Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Visual Studio 2008 lets me declare a command and attach it to the post-build event for a project. Like a lot of developers, I use it regularly to xcopy files to the application output directory.

I am working on a project where I need to xcopy files from two different places to two different destinations, all within a single project. In other words, I need to invoke two different xcopy commands from the same post-build event. It looks like the post-build event will only take a single command, and that if I need to invoke multiple commands, I will have to put the commands in a *.bat file and call that from the post-build event.

Is that correct, or is there a simpler way to invoke two commands from the post-build event? Thanks in advance for your help.

share|improve this question

3 Answers

up vote 41 down vote accepted

You can type in as many post build commands as you want. Just separate them by newlines.

Here's an example from one of my projects:

alt text

share|improve this answer
Including a screen-shot is only useful if you intend to host it forever. – OWenJ23 Oct 22 '12 at 20:11
@OWenJ23 ...or 'imageshack' in this case ;) – Anthony Walsh Apr 1 at 10:29

Important: When executing a batch file, you must use the "call" statement on order the following lines to be executed. If you don´t use "call", the execution goes into the .bat and doesn´t return to the following lines. Same as on DOS prompt.

e.g.:

call MyBatch1.bat
call MyBatch2.bat
share|improve this answer
+1 Thanks. This saved me some grief I was experiencing. – Bernard Apr 4 '12 at 20:53
Thanks!!! This was exactly what I was looking for! – Alex Loop Jul 6 '12 at 12:44
+1 from me, too. Completely forgot about that detail and was pulling my hair out. – Greg Apr 18 at 16:25

Each command should be on a separate line. What I found though is that if there's an error executing one of those commands the whole post-build fails and so you'll need to try each post-build command one at a time to debug.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.