Visual Studio Express

  • Thread starter Thread starter John Prado
  • Start date Start date
J

John Prado

It's possible to generate dll for deployment of projects (for my code
behind files)???

I can't find any option to do this in Visual Studio Express.

Need I to compile the pages in command line???
 
You can choose publish site for standard ASP.NET 2.0 deployment or you can
use the command line if you wish to build so there are no source files.

You should be able to set this up as an "external tool" or even create the
copy in post build events. nAnt is a good build and deploy option, if you
are comfortable with XML and you can set nAnt up as an external tool.

--
Gregory A. Beamer

*************************************************
Think Outside the Box!
*************************************************
 
Thanks for the reply Cowboy.

I will google nAnt to get more information.

Sure that MS will not release a FREE tool without loss of features ;)

Besides that I like VSEx as enviroment and rad tool for development.
 
You can download the Visual Studio 2005 Web Deplyment addon. It lets you
create a deployment project where you have more options than in the
publishing wizard.
 
Back
Top