0

I have a client that has an ASP.NET web application they sell to people that either in turn host it with our company or elsewhere. The end result is that source code and database setup can be spread across multiple servers, so when we push updates, we have to push manually by copying over source code and then updating the databases as needed. Are there any good alternatives out there for doing this to multiple servers?

4 Answers 4

3

If you're using Visual Studio 2010, then you could consider the new Web Deployment Package technology. See ASP.NET Web Application Project Deployment Overview , which explains how you can also deploy IIS settings and even necessary databases as part of the deployment.

Sign up to request clarification or add additional context in comments.

Comments

1

Have a look at the video on this page. It gives a decent introduction to MSDeploy.

Comments

1

An MSI would probably work best. Odds are, your customers will want to be in control of when/if the update happens, and an MSI is probably the simplest mechanism for giving out such an update.

Comments

0

John and Trip have great answers. I just wanted to add one little thing, unless this is an open source project:

Don't deploy source code.

Your client's app should be compiled and obfuscated.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.