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 111 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
- 581
- 6
- 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,436
- 4
- 23
- 45