Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
656 views
in Technique[技术] by (71.8m points)

asp.net - How can I publish site from command line with some publish profile?

Something like

msbuild /t:publish [use PublishProfileName] someproject.csproj

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
msbuild MyProject.csproj /t:PipelinePreDeployCopyAllFilesToOneFolder /p:Configuration=Release;_PackageTempDir=C:empsomelocation;AutoParameterizationWebConfigConnectionStrings=false

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

For Visual Studio 2012 you can use

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

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...