我希望通过C#visual studio项目添加新的构建配置。我希望它像调试构建配置,但有一点不同。即使调试配置发生变化,我也希望它总是像调试配置一样。
我该怎么做?
答案 0 :(得分:1)
以下是使用不同预处理器定义的示例。您必须手动编辑项目文件。我建议你在VS中这样做,因为它有语法高亮和自动完成功能。
在普通的csproj文件中,Debug|AnyCPU
配置的属性定义如下(1):
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
假设您要重用除DefineConstants
之外的所有内容,您只需创建一个单独的项目文件debug.props
来定义公共属性,将其放在与项目文件相同的目录中:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
</Project>
然后,只需调整主项目文件即可导入公共文件,并根据配置设置一些不同的值。这是通过将(1)替换为:
来完成的<Import Project="$(MsBuildThisFileDirectory)\debug.props"
Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='MyDebug'" />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'MyDebug|AnyCPU' ">
<DefineConstants>TRACE;DEBUG</DefineConstants>
</PropertyGroup>
应该很清楚这是做什么的:它使用公共属性导入文件(如果配置是Debug或MyDebug),然后根据使用的Configuration为DefineConstants设置不同的值。由于现在有一个PropertyGroup for Configuration == MyDebug,VS会自动重新签名,因此在Configuration Manager中,您现在可以选择MyDebug
作为配置。一旦你这样做,它会影响这样的代码:
#if TRACE //is now only defined for MyDebug config, not for Debug
Console.WriteLine( "hello there" );
#endif