在我的 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 在构建时忽略这个框架文件。