Auto Update MSI Package in WCF

I have a script like this ...

i created the msi package to host the wcf service in iis. when ever there are any changes to the service, I uninstall the package and create a new one and then install again.

Is there a possible way to automatically update the MSI package when a wcf service change ever occurs.

+3
source share
1 answer

I would advise you to take a look at MSDeploy / Web Deploy 2.0 to deploy your services, but it is much more suitable for work.

http://www.iis.net/download/WebDeploy

http://msdn.microsoft.com/en-us/library/aa751792.aspx

0
source

All Articles