Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the best deployment strategy for ASP.NET

I work for an ISV and we have a vanilla ASP.NET (no mvc) web application which we deploy to our customer sites.

We're currently doing it via xcopy and IIS manually.

What's the best technology to use to deploy it? ClickOnce? WebDeploy? Something else?

Tips appreciated.

like image 921
WOPR Avatar asked Sep 15 '10 04:09

WOPR


People also ask

What are the techniques used for deployment in ASP NET?

There are different techniques used for deployment, however, we will discuss the following most common and easiest ways of deployment: XCOPY deployment. Copying a Website. Creating a set up project.

How are .NET applications deployed?

To deploy a . NET application: Install the IBM Data Server Driver Package onto the computers where you will deploy your application. During the installation, set the IBM Data Server Driver Package installation to be the default database client interface copy.

What is ASP deployment?

Deployment refers to the process of copying an asp.net web application from the development system to the server on which the application will be run.


1 Answers

WebDeploy FTW.

Check out this excellent article/video from Scott Hanselman.

Handles config transformations as well as the painful task of database deployments.

like image 171
RPM1984 Avatar answered Sep 28 '22 04:09

RPM1984