Web Deployment through MSDeploy.exe
Asked Answered
F

2

19

I'm configuring a CI build server with Jenkins. After the build steps I'd like to deploy the website.

When publishing the the website from VisualStudio I published by Web Deploy. I like that method because it actually publish those file which have changed, so the deploy is really quick.

Now on the build server I'm trying to do the same: build the application (using MSBuild.exe), and then deploy the application (using MSDeploy.exe?).

I've seen some post where they deploy the application using MSBuild.exe and others using MSDeploy.exe, is there a significant difference in there?

Do you have any advice that could help with this?

Thanks and advanced.

Fromenty answered 24/3, 2016 at 1:14 Comment(0)
V
19

Use MSBuild to create an MSDeploy package and then MSDeploy.exe to deploy that package to any environments. This link should help you gain a better understanding of how WebDeploy/MSDeploy works.

http://dotnetcatch.com/2016/02/25/the-anatomy-of-a-webdeploy-package/

Whats REALLY cool is you can also use MSDeploy to deploy databases and non-web applications too. We have fully automated the deployment of 50+ products using this method.

http://dotnetcatch.com/2016/02/10/deploying-a-database-project-with-msdeploy/

http://dotnetcatch.com/2016/03/18/deploy-non-web-apps-with-msdeploy/

UPDATED - Basic steps to use MSDeploy packages:

  1. Create a package in your build by adding the /t:Package arg to your MSBuild call
  2. Store the resulting package form the bin directory to your artifact repo
  3. Call MSDeploy.exe to deploy the package to your target server. There are lots of options here but the basic command follows:

    "c:\Program Files (x86)\IIS\Microsoft Web Deploy V3\msdeploy.exe" -verb:sync -source:package=mypackage.zip -dest:auto,computerName=localhost

Vaporize answered 24/3, 2016 at 10:47 Comment(2)
Can you please summarize the information from the links so that your answer is complete on its own?Yuriyuria
Added a few more details.Vaporize
B
1

Even easier using current Visual Studio and dotnet, create your Publish Profile in Visual Studio, then use dotnet on the CI server:

dotnet publish /p:PublishProfile=PROFILE-NAME /p:Password=*****

https://github.com/aspnet/Docs/blob/master/aspnetcore/host-and-deploy/visual-studio-publish-profiles.md

Boric answered 22/8, 2018 at 7:56 Comment(1)
Providing the password in this way, in combination with adding an AllowUntrustedCertificate tag to our .pubxml (as in this SO answer) is what worked for us, since our certificate was failing the revocation check.Nightgown

© 2022 - 2024 — McMap. All rights reserved.