vs2008 new WebSite Release config missing

  • Thread starter Thread starter CMoya
  • Start date Start date
C

CMoya

It seems whenever I create new Web Site projects in VS2008, there is only a
Debug configuration available, not Release. Is this a bug or by design?
Upgraded Web Sites (from 2005) show both. So do "Web Application" projects
(I still don't really understand the pros and cons of using one over the
other... except Web App projects have much nice IDE integration-- but thats
a different topic, I guess). Any clues? I'm a little confused. TIA.
 
You set the version (Release/Debug) by setting
<compilation debug="true|false"> in web.config.

If set to "true", you get a Debug compilation.
If set to "false", you get a Release compilation.



Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
 
Back
Top