如何确定项目是否在 MSBuild .targets 文件中以调试(或发布)模式构建,并将此信息用作另一个属性的条件?
就像是:
<OutDir Condition="IsDebug">bin\Debug\$(SomeOtherProperty)\</OutDir>
<OutDir Condition="!IsDebug">bin\Release\$(SomeOtherProperty)\</OutDir>
是否有诸如调试/发布模式之类的东西,或者它们只是不同配置属性值集的常规名称?