Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET Web App Distribution

Tags:

What is the simplest way to distribute an asp.net web application? I tried to look at some of the open source asp.net projects out there to see how they distribute their apps and how they do updates and they seem rather complicated to me (not for myself to perform but for non-technical users). A lot of them entail backing up the entire installed project, deleting specific folders and save parts of their web.config. I am hoping to find a solution that will make the update process specifically as simple as possible.

Thanks.

like image 950
Greg Avatar asked Jan 22 '09 21:01

Greg


1 Answers

I am working on a project with a similar requirement now. We decided to use WiX to create an installer that can be run on the server or machine where the site is installed. WiX is incredibly powerful, but takes a bit to get the hang of.

There are plenty of other open source, and paid installer technologies as well. Here is a post with some info on a few.

like image 187
JasonS Avatar answered Sep 28 '22 04:09

JasonS