我正在尝试将#ifdef'd 代码库编译为两个不同的目标框架,即 3.5 和 4.0。
我试图修改解决方案中的 .proj 文件无济于事。
似乎 MSBuild / VS2012 没有通过 UI 获取解决方案配置更改。
这是 .proj 文件之一的片段:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\Binaries\</OutputPath>
<DefineConstants>TRACE;NET35</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 40|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>..\Binaries\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET40</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
</PropertyGroup>
当我从“发布”切换到“调试 40”时,目标框架在项目属性中没有改变(因此由于其他条件引用的程序集而中断了编译)。
我在有条件地引用不同的程序集时也遇到了问题,就好像 VS/MSBuild 没有选择解决方案配置一样(有些甚至没有出现在引用中)。
编辑:我从 v3.5 版本中排除了 Microsoft.CSharp,其中包含以下行:
<Reference Include="Microsoft.CSharp" Condition=" '$(Configuration)' == 'Debug 40'" />
到目前为止,似乎只是忽略了 TargetFrameworkVersion 属性。