VS2012 publish multiple projects in a solution

前提是你 提交于 2019-11-30 11:35:57
StefanHa

I found out I can use msbuild at the command line to publish multiple projects.

msbuild example.sln /p:Configuration=Test;DeployOnBuild=true;PublishProfile=Test.example.pubxml /MaxCpuCount:8

You might be interested in publishing from command line:

msbuild YourSolution.sln /property:Configuration=Release;DeployOnBuild=true;PublishProfile=Production

You can find further reading on Scott Hanselman's blog for example.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!