Reputation: 6714
It's not clear from the documentation what the working directory is for pre-build or post-build events in Visual Studio. What is it? Where is this documented?
Upvotes: 14
Views: 8984
Reputation: 131
For future reference, to find the execution directory, you could also enter:
"start cd"
in the Pre-Build event command line area.
This will open a command prompt in the current path after saving and triggering a build.
Also, the directory will be pointing in the \bin\debug|release.
Upvotes: 13
Reputation: 6714
The working directory is the bin directory of the project.
I was unable to find documentation, but I tested this by making a post build event that made a directory. Then I checked where it was created.
Upvotes: 5