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.