如何合并命令行常量和配置常量

How to merge constants of command line and constants of configuration

我有一个项目,其中为配置定义了预处理器常量

<DefineConstants>TRACE;DEBUG;VAR1</DefineConstants>

我的代码可以是:

#if VAR1
        Console.WriteLine("Var1");
#endif
#if VAR2
        Console.WriteLine("Var2");
#endif

我想执行 MSBuild 并定义常量 VAR2 而不覆盖配置中定义的常量

我试试 :

MSBuild MyProject.csproj /p:DefineConstants=VAR2

但是项目文件中定义的常量没有设置:我的程序只显示

Var2

我试过类似的东西都没有成功:

MSBuild MyProject.csproj /p:DefineConstants=$(DefineConstants);VAR2

<DefineConstants>$(DefineConstants);TRACE;DEBUG;VAR1</DefineConstants>

有没有办法合并项目中定义的常量和命令行中定义的常量?

AFAIK 通过命令行定义的 属性 将始终覆盖具有相同名称的静态定义的 属性。作为解决方法,您可以将项目文件中未定义的附加 属性 加入 <DefineConstants /> 队列:

<DefineConstants>TRACE;DEBUG;VAR1;$(MyCommandLineConstants)</DefineConstants>

并以这种方式调用 MSBuild:

MSBuild MyProject.csproj /p:MyCommandLineConstants=VAR2;VAR3