在构建事件命令行中放置注释的正确方法?

时间:2011-04-11 19:03:41

标签: .net visual-studio visual-studio-2010

将注释放入pre / post构建事件命令行的正确方法是什么?

2 个答案:

答案 0 :(得分:114)

使用REM:http://www.robvanderwoude.com/comments.php

一个例子:

REM signtool sign /a $(TargetPath)
xcopy /Y "$(TargetPath)" "C:\Deploy\$(TargetFileName)"

答案 1 :(得分:24)

您也可以使用双冒号::

:: My comments
xcopy /Y "$(TargetPath)" "C:\Deploy\$(TargetFileName)"

我更喜欢这些命令行中的REM关键字(和bat文件)。