Bilgin Kılıç
Bilgin Kılıç

Reputation: 9119

How to publish a web site using Visual Studio Express Web 2010

I need to publish a web site (DLLs built in release mode) using Visual Studio 2010 Express (Web Developer).

Any idea like using batch, or whatever, since I don't have the professional version.

Upvotes: 1

Views: 3468

Answers (1)

Christopher Painter
Christopher Painter

Reputation: 55571

It depends what you are doing. If it's an internal IT arrangement where you have servers that already are configured with your base environment, dependencies and what not you can just use technologies like msbuild or MS Deploy / Web Deploy to syncronize your changes into dev, test and production ( or whatever you call it ). Check out Scott Gu's blog article:

VS2010 Web Deployment

But if you are creating a product that will ship to customers ( like Sharepoint or Team Foundation Server ) then I would look at Windows Installer / WiX / InstallShield to create a complete system for shrinkwrapping and deploying your application and all of it's nderlying dependencies and configuration details.

Upvotes: 1

Related Questions