MsBuild:生成二进制文件而不是zip文件

时间:2018-02-23 03:50:36

标签: visual-studio msbuild

我想构建一个解决方案并将生成的工件(二进制文件)放在一个文件夹中,而不是将它们打包在一个zip文件中。我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

您可以尝试将它们从visual studio发布到文件系统

enter image description here

或者如果您想使用控制台,可以尝试使用此

Using MSBuild, how do I build an MVC4 solution from the command line (applying Web.config transformations in the process) and output to a folder?

答案 1 :(得分:0)

我发现工作只是提供 OutputPath

msbuild.exe <solution.sln> /p:OutputPath="<target_directory>"

请注意 targe_directory 不应以\结尾。