views:

119

answers:

1

I mean; I need to publish the web site (Included the dlls built on Release Mode...)

Any idea like using bats. or whatever.. since I don't have the professional studio.

+1  A: 

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.

Christopher Painter
@Sir I got the idea, and did it. Okay it is a ready zip file to transfer my project to the production server, on the other hand, I want to get the dll files which may be created from the App Folder.. I need this since dlls are faster than .cs files. Isn't it sir?
blgnklc