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?
Asked
Active
Viewed 157 times
2 Answers
1
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

Sudeep Reddy
- 611
- 7
- 8
0
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 \
.

Hans
- 2,674
- 4
- 25
- 48