在我的VS2010中,当我构建解决方案时,文件Microsoft.Common.Targets中有100多个警告。当我尝试构建,发布或运行程序时,我仅收到警告,但是当我双击它以获取更多信息时,会弹出Microsoft.Common.Targets,然后得到所有警告。
该文件Microsoft.Common.Targets是.net框架的一部分,并且具有MSBuild内置目标等。它在属性窗口中具有适当的架构。
一些警告示例(100个中的2个):
Warning 2 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'CustomBeforeMicrosoftCommonTargets' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. C:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets 22 10 Miscellaneous Files
Warning 3 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element '_OriginalConfiguration' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. C:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets 60 10 Miscellaneous Files
为什么该文件突然不在编辑器中,为什么不在我的项目中,以及如何告诉Visual Studio在构建时忽略此框架文件,为什么会突然出现在我的编辑器中。