0
我使用下面的批處理腳本來構建解決方案文件Visual Studio 2010的發佈命令 - 命令提示符
set BUILD_PATH=%CD%
call "C:\Program Files\Microsoft Visual Studio 10.0\Common7\Tools\vsvars32.bat"
devenv /clean Release "%BUILD_PATH%\Source\Dotnet\WebService\OPALController\OPALController.sln"
devenv /rebuild Release "%BUILD_PATH%\Source\Dotnet\WebService\OPALController\OPALController.sln
我正在尋找一個命令發佈,因爲devenv /publish
不工作
有任何其他方式發佈工件?
您可能需要考慮Web Deploy(MSDeploy)。請參閱http://stackoverflow.com/questions/3097489/how-to-publish-web-with-msbuild。 – jrummell