如何在构建后事件中使用用户定义的变量?

时间:2014-01-19 17:15:06

标签: c# variables msbuild post-build-event

我想在PostBuild event中使用局部变量,但我无法理解如何在里面使用它。这里我的Post-Build事件命令(param是可以通过msbuild / p开关传递的命名参数):

set fold=$(TargetDir)
if defined param (set fold=$(TargetDir)$(param)\)
if not exist "%fold%" md "%fold%"
copy /y "$(TargetPath)" "%fold%"

在构建解决方案时,我得到了:

msbuild PrePostBuildEvents.sln /p:param=ext

...

PostBuildEvent:
  set fold=G:\prj\work\PrePostBuildEvents\bin\Debug\
  if defined param (set fold=G:\prj\work\PrePostBuildEvents\bin\Debug\ext\)
  if not exist "%fold%" md "%fold%"
  copy /y "G:\prj\work\PrePostBuildEvents\bin\Debug\PrePostBuildEvents.dll" "%fold%"
  The file cannot be copied onto itself.
          0 file(s) copied.

如果我将%fold%更改为$(fold),我会得到另一个结果,但这也是错误的:

PostBuildEvent:
  set fold=G:\prj\work\PrePostBuildEvents\bin\Debug\
  if defined param (set fold=G:\prj\work\PrePostBuildEvents\bin\Debug\ext\)
  if not exist "" md ""
  copy /y "G:\prj\work\PrePostBuildEvents\bin\Debug\PrePostBuildEvents.dll" ""
  The filename, directory name, or volume label syntax is incorrect.
          0 file(s) copied.

我做错了什么?

1 个答案:

答案 0 :(得分:1)

首先,使用AfterBuild msbuild目标而不是PostBuild事件。这将为msbuild提供有关您正在尝试做什么和正确完成的更多信息,这意味着更快的增量编译。

环境变量可以在AfterBuild事件中使用: http://msdn.microsoft.com/en-us/library/ms171459.aspx

理想情况下,一旦你运行msbuild一次,当你第二次运行它时,它应该不会跳过编译,也不会因为文件已经存在而无法复制内容。