Resolving MSBuild 4.0 warnings

I've upgraded a solution to use MSBuild 4.0. It compiles but I get lots of warnings, for example:

"T:projectsCastle.CorebuildscriptsBuild.proj" (Package target) (1) ->
"T:projectsCastle.CoreCastle.Core-vs2008.sln" (Build target) (2:2) ->
"T:projectsCastle.CoresrcCastle.DynamicProxy.TestsCastle.DynamicProxy.Tests-vs2008.csproj" (default target) (3:2) ->
  D:WindowsMicrosoft.NETFrameworkv4.0.30319Microsoft.Common.targets(847,9): warning MSB3644: The reference assemblies for framework ".NETFramework,Version=v4.0.30319" 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. [T:projectsCastle.CoresrcCastle.DynamicProxy.TestsCastle.DynamicProxy.Tests-vs2008.csproj]

How can I fix these warnings? It is related to .NET 4.0 Multitargeting pack or SDK, but there's no SDK for .NET 4.0 AFAIK and Multi-Target pack can not be installed separatly.

Any ideas would be appreciated.


Have you tried looking at the output of the 'ResolveAssemblyReferences' task in MSBuild with diagnostic level debugging turned on ('/v:diag'). This should tell you what directories the build process is searching to find the dlls. Although, if the build process can't find it, I'm kind of surprised that the IDE doesn't show an issue with that reference in the project.

There is a .Net Framework SDK, but its also part of the Windows SDK. The version that shipped with VS2010 is 7.0A, and the latest is 7.1. There might be a path/reference conflict that was introduced by the installers if you've installed one or both separately.


Apparently a known issue.

Did you install .NET 4 Client Profile or Full?

链接地址: http://www.djcxy.com/p/62030.html

上一篇: .NET 4.0构建服务器引用程序集警告MSB3644

下一篇: 解决MSBuild 4.0警告