Post-Build Event Syntax

  • Thread starter Thread starter Joe Cool
  • Start date Start date
J

Joe Cool

I cannot find any documentation on the scripting language used for
Visual Studio Post-Build Events. I need to make a directrory if it
does not exist and then copy a file to it. But I only need to do it
for a Debug build. If it is done with a Release build it breaks the
TFS automated build. Does the if statement in a post build event
support an End If?
 
I cannot find any documentation on the scripting language used for
Visual Studio Post-Build Events. I need to make a directrory if it
does not exist and then copy a file to it. But I only need to do it
for a Debug build. If it is done with a Release build it breaks the
TFS automated build. Does the if statement in a post build event
support an End If?

In case anyone is interested, the language used in the post-build
events is the same language behind a command prompt window,
essentially what used to be known as MS-DOS.

And there is a current lanhuage reference at:

http://technet.microsoft.com/en-us/library/bb490890.aspx
 
Back
Top