vote up 15 vote down star
3

How can I limit my post-build events to running only for one type of build? I'm using the events to copy DLLs to a local IIS virtual directory but I don't want this happening on the build server in release mode.

flag

40% accept rate

8 Answers

vote up 24 vote down check

Pre- and Post-Build Events run as a batch script. You can do a conditional statement on $(ConfigurationName).

For instance

if $(ConfigurationName) == Debug xcopy something somwhere
link|flag
strange, maybe its just me but I tried adding the if condition, and now I get this error - error exited with code 255 – Michael L Jan 15 '09 at 11:03
2  
I've found that the entire command needs to be on one line or you'll get "exited with code 255" – Robin M Feb 11 at 12:41
1  
you can also use gotos / labels for a fuller solution (see my Jul 24 answwer) – GalleySlave Jul 24 at 9:59
vote up 6 vote down

alternatively (since the events are put into a batch file & then called), use the following. (in the Build event box, not in a batch file):

if $(ConfigurationName) == Debug goto :debug

:release
signtool.exe ....
xcopy ...

goto :exit

:debug
' debug items in here

:exit

This way you can have events for any configuration, and still manage it with the macros rather than having to pass them into a batch file & remember that %1 is $(OutputPath) etc:

link|flag
awesome, thanks! – Michael Haren Nov 3 at 15:12
vote up 0 vote down

@Michael L IF $(ConfigurationName) == Debug $(SolutionDir)reminify.bat

you need to use IF and not if

link|flag
1  
Best to add comments to other peoples answers as comments, just like this one ;) – Ryan Jun 24 at 18:27
vote up 0 vote down

I have just the similar answer just select the configuration you want to change in the dropdown of the Property Pages dialog and edit the post build step..


brianna

Link Building

link|flag
vote up 0 vote down

I have just the similar answer just select the configuration you want to change in the dropdown of the Property Pages dialog and edit the post build step..


brianna

Link Building

link|flag
vote up 0 vote down

Like any project setting the buildevents can be configured per Configuration, just select the configuration you want to change in the dropdown of the Property Pages dialog and edit the post build step

link|flag
2  
Build Events are not specific to any configuration when created in the IDE. – Joseph Daigle Sep 29 '08 at 18:58
Just tested this here VS 2005, works fine for me – Harald Scheirich Sep 29 '08 at 20:40
2  
VS 2008, and it doesn't work for me – dr. evil Dec 15 '08 at 22:58
vote up 13 vote down

Add your post build event like normal. Then save you project, open it in Notepad (or your favorite editor) and add condition to the PostBuildEvent property group. Here's an example:

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
    <PostBuildEvent>start gpedit</PostBuildEvent>
</PropertyGroup>
link|flag
This works but it forces you do to all of your design work for the events in the project file source. Other conditional build event declarations are hidden from the the IDE also. – Joseph Daigle Sep 29 '08 at 18:55
I would have to say this is the better answer for me, the preferred method just didn't work. – Michael L Jan 15 '09 at 11:19
vote up 0 vote down

You can pass the configuration name to the post-build script and check it in there to see if it should run.

Pass the configuration name with $(ConfigurationName)

Checking it is based on how you are implementing the post-build step -- it will be a command-line argument

link|flag

Your Answer

Get an OpenID
or

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