Reputation: 2852
I want to build a solution and have the generated artifacts (binaries) in a folder rather than having them packaged in a zip file. How can I do that?
Upvotes: 0
Views: 210
Reputation: 2852
What I found working was to simply providing OutputPath:
msbuild.exe <solution.sln> /p:OutputPath="<target_directory>"
Just be careful the targe_directory shouldn't end with \
.
Upvotes: 0
Reputation: 651
You can try publishing them to a file system from visual studio
or you if you want to use the console you can try using this
Upvotes: 1