gpt4 book ai didi

visual-studio-2010 - Visual Studio 2010 无法加载导入了 元素的项目

转载 作者:行者123 更新时间:2023-12-01 01:29:44 27 4
gpt4 key购买 nike

我们有一个大型(约 800 个单独的项目)系统,我们正在从旧的构建系统迁移到 Visual Studio 2010。在过去的几周里,我们为每个项目手动创建了 Visual Studio 项目文件(.vcxproj 格式)并且我们能够仅使用 MSBuild.exe (WIN!!) 从命令行构建整个系统。由于需要转换的项目数量众多,手动创建项目文件比使用 VS 项目向导创建它们更高效,因为我们之前的构建系统不使用 Visual Studio 项目文件。

为了维护和遵守 DRY,我们将大部分构建配置(编译器/链接器开关、包含路径等)重构为常见的 .targets 和 .props 文件。由于每个项目的配置集都是一样的,我们也把<ItemGroup>包含 <ProjectConfiguration>常见的 .props 文件中的项目,对于我们无人值守的夜间构建,一切正常。

不幸的是,Visual Studio 2010 IDE(RTM 版本)无法加载这些项目。当我尝试加载项目时,我收到一条错误消息,提示“项目 [Foo] 不包含任何配置”。如果我手动复制 <ItemGroup>从我们的 .props 文件到任何项目,IDE 能够加载项目。

在搜索时我发现 this MS Connect 上的问题,但它被标记为“Closed as External”,MS 回复说正在为 Visual Studio 的下一个公开版本调查该问题。手动添加 完全一样 <ItemGroup>约 800 个项目的元素不是可接受的解决方法。由于项目在 VS 之外构建并完美运行,我必须假设问题在于 Visual Studio 解析/加载项目文件的方式。

有没有人能够找到解决此问题的方法?有没有人知道何时/是否会在 Visual Studio 中修复此问题?

最佳答案

我已经为这个问题创建了一个解决方法。这仅适用于 VS2010,不适用于以前的版本,因为它需要 MSBuild 4。

首先,创建一个名为 Configure.xslt 的文件有以下内容。

<?xml version="1.0" encoding="utf-8"?>
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msbuild="http://schemas.microsoft.com/developer/msbuild/2003">
<xsl:output version="1.0" encoding="UTF-8" indent="yes" />
<xsl:template match="/msbuild:Project">
<xsl:copy>
<xsl:copy-of select="@*" />
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<xsl:template match="*">
<xsl:copy-of select="." />
</xsl:template>
<xsl:template match="msbuild:ItemGroup[@Label = 'ProjectConfigurations']">
<xsl:copy-of select="document('Default.props')/msbuild:Project/msbuild:ItemGroup[@Label = 'ProjectConfigurations']" />
</xsl:template>
</xsl:transform>

现在,创建一个名为 Default.props 的文件有以下内容。
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" InitialTargets="Configure" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- This must come first, or else VS IDE's property sheets will choke. -->
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

<!-- The following configurations will be pasted into the importing project file on demand. -->
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>

<!-- XLST task which manipulates the project file and performs an in-place replacement. -->
<Target Name="Configure" Condition="Exists('$(MSBuildThisFileDirectory)Configure.xslt')" Inputs="$(MSBuildProjectFile);$(MSBuildThisFileFullPath);$(MSBuildThisFileDirectory)Configure.xslt" Outputs="$(MSBuildProjectFile);$(OutDir)">
<Message Text="Configuring $(MSBuildProjectFile)..." />
<XslTransformation XslInputPath="$(MSBuildThisFileDirectory)Configure.xslt" XmlInputPaths="$(MSBuildProjectFile)" OutputPaths="$(MSBuildProjectFile).tmp" />
<Move SourceFiles="$(MSBuildProjectFile).tmp" DestinationFiles="$(MSBuildProjectFile)" />
<MakeDir Directories="$(OutDir)" />
</Target>

<!-- The remaining MSBuild imports. -->
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>

此文件是您单独的“属性表”,其中包含项目的所有通用属性,包括配置。根据您的需要定制它。重要的部分是 <Target>节点(创建一个名为 Configure 的新目标)和 InitialTargets <Project> 中的属性node(它告诉 MSBuild 最初执行 Configure 目标)。

之后,同时移动 Configure.xsltDefault.props到您选择的目录。

最后,在您的所有项目中使用以下模板。
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Change the directory below according to the path containing the above files. -->
<Import Project="Directory\Default.props" />
<!-- The ItemGroup below will be effectively replaced by the same ItemGroup inside Default.props. -->
<ItemGroup Label="ProjectConfigurations" />
</Project>

在 VS 提示符下,运行初始 msbuild用配置填充您的文件,否则 VS IDE 将不会打开您的项目(因为最初激发此解决方法的相同错误)。或者,您的模板可能包含任何虚拟配置,只是为了使 IDE 能够最初打开项目——效果是相同的。

已知警告:您不能使用 IDE 创建每个项目的配置(因为 IDE 会强制对在 ProjectConfigurations 标签下找到的任何配置进行分组)。您可以直接在项目文件的 XML 数据中创建它们,并且只要您不标记它们 ProjectConfigurations ,它们不会被替换或删除。

关于visual-studio-2010 - Visual Studio 2010 无法加载导入了 <ProjectConfiguration> 元素的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5596329/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com