Installing the Lync 2013 sdk client side at visual studio 2015

I am trying to install the Lync 2013 SDK on Visual studio 2015, but I am getting the error message "MSVS2010 SP1 or higher was not found. Go here to download and install"

I looked at the problem on the Internet, and the closest to the solution is to install the cumulative update, but this was for VS2013, and I can not find any place for the actual file download.

What do I need to do to complete the configuration of the Lync 2013 SDK?

+4
source share
1 answer

To install the SDK, you can fake that you have an earlier version of Visual Studio installed. At least it seemed to me that this worked.

What I did was export the registry entries to HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\14.0\Setup\vs, find and replace VisualStudio\14.0using VisualStudio\12.0and import the registry entries again.

This allowed me to install the SDK, and I subsequently deleted the imported records again. Make sure (using regedit) that you are not overwriting any existing entries, of course.

+4
source

Source: https://habr.com/ru/post/1607253/


All Articles