SmartAssembly Consol

时间:2015-12-30 10:30:27

标签: smartassembly

是否有人知道如何在后期构建事件中编写此行

call "C:\Program Files\Red Gate\SmartAssembly 6\SmartAssembly.com" "/build $(ProjectFolder)\($ProjectName).saproj" "/input=$(TargetPath) /output="%USERPROFILE%\AppData\Roaming\$(ProjectName).bundle\Contents\$(ConfigurationName)\$(TargetName)"

我继续使用代码1退出。

1 个答案:

答案 0 :(得分:0)

只需在Post build event中添加以下行:

"C:\Program Files\Red Gate\SmartAssembly 6\SmartAssembly.com" /build "full_path.saproj"

我们将输出和输入放在saproj文件中并使用无标记

我认为错误就在这里:

"/build $(ProjectFolder)\($ProjectName).saproj"

应该是:

/build "$(ProjectFolder)\($ProjectName).saproj"

另外 - 请参阅红门网页上的link