Question
2
Replies
46
Views
Capgemini Pvt Ltd
Posted: February 27, 2017
Last activity: August 23, 2018
SDK Error
I have some Open Span Installation problem in my system. I tried many time but show same error. SDK Problem please help me
***Updated by Moderator: Marissa to update categories***
**Moderation Team has archived post**
This post has been archived for educational purposes. Contents and links will no longer be updated. If you have the same/similar question, please write a new post.
Santosh,
This is a reoccurring error with Visual Studio 2013 and higher. This error is a result of failing to target the appropriate SDK through the Microsoft.Common.targets file.
The way to resolve this would be to comment out the following within the Microsoft.Common.targets file :
<GenerateResourceMSBuildRuntime
Condition="'$(GenerateResourceMSBuildRuntime)' == '' and
$([MSBuild]::DoesTaskHostExist(`$(TargetFrameworkAsMSBuildRuntime)`, `$(GenerateResourceMSBuildArchitecture)`))">$(TargetFrameworkAsMSBuildRuntime)</GenerateResourceMSBuildRuntime>
The Microsoft.Common.targets file can be found in the following directory: C:\Windows\Microsoft.NET\Framework\v4.0.30319
Make sure you have administrator privileges when doing so.
In order to comment out the tag, you will need to use the following format
<! -- is used at the start of the value that is commented.
-- > is used at the end of the value that is commented
Ex: <!-- This is commented out -->