基于项目变量的构建后事件命令行

时间:2018-09-24 14:00:19

标签: c# visual-studio build post-build-event build-events

完成项目构建后,我需要调用批处理文件。

我需要基于c#项目中的变量进行不同的调用。我能怎么做?这就是我需要的:

AppHelper.cs
public enum CompilingDefines
{
    XNET,
    NOTIFIER
}
public static CompilingDefines CompiledFor { get; set; }

不同的构建事件调用:

NOTIFIER版本

call "$(TargetDir)CreaPacchettoNotifier.bat"

XNET版本

call "$(TargetDir)CreaPacchettoXNet.bat"

1 个答案:

答案 0 :(得分:0)

假设XNET和NOTIFIER是构建配置,则最好使用$(Configuration)$(Platform)