Reputation: 21170
What is the simplest way in MSBuild to override the output for all projects in a solution to go to a single folder?
Upvotes: 4
Views: 837
Reputation: 4424
Set $(OutDir) to gather output of all the projects in one location.
Upvotes: 1
Reputation: 21170
You have to specify an absolute path for /p:OutputPath= because a relative path will go relative to each project file.
Upvotes: 2