12

I have MVC2.0 web application and I need to make an exe installer to deploy the application and the DB on the customer's server.

Is there a tool in VS2010 to do this or do I have to use a 3rd party tool?

Drew Gaynor
  • 8,292
  • 5
  • 40
  • 53
ToDayIsNow
  • 1,137
  • 1
  • 11
  • 13

1 Answers1

8

You can create deployment package, bin deploy or simply use publish option to drop files to web server.

Here are some useful links:

frennky
  • 12,581
  • 10
  • 47
  • 63
  • 1
    I need to have an exe or msi file .. and the customer can dbl click then next next .. and application and db is installed on server and running – ToDayIsNow Mar 16 '11 at 11:38
  • Than try creating deployment package it creates .cmd file that installs your app. – frennky Mar 16 '11 at 11:42
  • As far as I know, NuGet can't be used for web app deployment. I've added more links on web deployment. – frennky Mar 16 '11 at 12:37