gpt4 book ai didi

csproj - 除了 csproj 中的现有常量外,还定义了常量

转载 作者:行者123 更新时间:2023-12-04 22:43:41 25 4
gpt4 key购买 nike

似乎如果我有一个如下所示的 csproj 文件,我最终会定义 BAR 而未定义 FOO。

<PropertyGroup>
<DefineConstants>FOO</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>BAR</DefineConstants>
</PropertyGroup>

是否有“定义附加常量”的语法,以便我可以使用它并最终定义 FOO 和 BAR?

我知道在这个人为的例子中,我可以
<PropertyGroup>
<DefineConstants>FOO BAR</DefineConstants>
</PropertyGroup>

但我的实际用例更复杂。除了之前设置的内容之外,我真的需要能够定义一个常量。

最佳答案

这样做:

<PropertyGroup>
<DefineConstants>FOO</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);BAR</DefineConstants>
</PropertyGroup>

关于csproj - 除了 csproj 中的现有常量外,还定义了常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36793499/

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