msbuild 14 doesn't work without full .net framework installation

*爱你&永不变心* 提交于 2019-12-08 04:17:52

问题


I have a build machine with visual studio 2010 and multiple build targets. all the other targets that I use works as expected and for some reason the new build of version 14 for .net 4.6.1 doesn't work.

When I'm executing the build from command line I get the following error:

C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets(1097,5): warning MSB3644: The reference assemblies for framework ".NETFramework,Version=v4.6.1" were not found. To resolve this, install the SDK or Targeting Pack for this framework version or retarget your application to a version of the framework for which you have the SDK or Targeting Pack installed. Note that assemblies will be resolved from the Global Assembly Cache (GAC) and will be used in place of reference assemblies. Therefore your assembly may not be correctly targeted for the framework you intend.

Can someone explain to me how to solve it?


回答1:


You should install the correct SDK of the .NET Framework (and probably Windows) to be able to compile for .NET 4.6.1.

  • You can find the .NET 4.6.1 SDK here.
  • The latest Windows SDK can be found on this page, under Windows Standalone SDK for Windows 10.


来源:https://stackoverflow.com/questions/39567540/msbuild-14-doesnt-work-without-full-net-framework-installation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!