Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any way to create a patch for an ASP.Net web application installer?

Is it possible to create patch installers for web deployment installers generated in VS2005?

I have a situation in which it is undesirable to perform a complete uninstall/reinstall of a web site, but in which periodic bug fixes and minor upgrades are made.

I've tried following the instructions in various online posts about using msimsp.exe to generate a patch file, but most/all of them rely on some usage of msiexec.exe to create an administrative install for comparison, since msimsp.exe can't cope with compressed content (e.g. CAB files). Web installations don't really have an administrative install, however, and ultimately the patch creation fails.

Of course, I can create an installer containing just the changed files by hand, but that's prone to error, and having an automated process is more desirable.

Any help is appreciated.

like image 600
Jared Avatar asked Oct 02 '08 13:10

Jared


People also ask

What is the component of ASP.NET which can be used to develop Web applications?

A base framework for processing web requests: As part of the ASP.NET framework, servers evaluate the code that web developers write with C# and send HTML to the user. Client-side code is written in JavaScript.

Can we develop web application using .NET core?

The Web Application (Model-View-Controller) template contains everything that is required to create an ASP.NET Core MVC Web Application. The Web Application (Model-View-Controller) template creates Models, Views, and Controllers folders. It also adds web-specific things such as JavaScript, CSS files, Layout files, etc.


1 Answers

We deploy using Subversion.

http://blog.lavablast.com/post/2008/02/I2c-for-one2c-welcome-our-new-revision-control-overlords!.aspx

like image 191
Jason Kealey Avatar answered Sep 24 '22 01:09

Jason Kealey