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.
|
3
|
|
|
|
|
|
Pre- and Post-Build Events run as a batch script. You can do a conditional statement on For instance
|
||||||||||
|
|
|
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>
|
||||
|
|
|
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):
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: |
||
|
|
|
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 |
||
|
|
|
|
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 |
||||||||||
|
|
|
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 |
||
|
|
|
|
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 |
||
|
|
|
|
@Michael L IF $(ConfigurationName) == Debug $(SolutionDir)reminify.bat you need to use IF and not if |
||||
|
