asp.net – 如何发布站点从命令行与一些发布配置文件?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何发布站点从命令行与一些发布配置文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
就像是

msbuild / t:发布[使用PublishProfileName] someproject.csproj

解决方法

msbuild MyProject.csproj /t:PipelinePreDeployCopyAllFilesToOneFolder /p:Configuration=Release;_PackageTempDir=C:\temp\somelocation;AutoParameterizationWebConfigConnectionStrings=false

MSBuild 2010 – how to publish web app to a specific location (nant)?

对于Visual Studio 2012,您可以使用

msbuild MySolution.sln /p:DeployOnBuild=true;PublishProfile=Production;Password=foo

ASP.NET Web Deployment using Visual Studio: Command Line Deployment

原文链接:/aspnet/250941.html

猜你在找的asp.Net相关文章