Build "Release" for asp.net website

G

Guest

I build a website solution by using visual studio 2005, how can I build the
"release" version, because I just find the "debug" in the IDE and it seems
it's necessary to append the configuration manually.
 
S

sloan

Here are the contents of 2 files. One is a .bat, one is a .txt.



--start BuildReleaseWebSite.bat (do not include this line)

@echo off
ECHO When/If prompted with the question:
ECHO .

ECHO Does ".........." specify a file name or directory name on the
target
ECHO (F = file, D = directory)?
ECHO _
ECHO You should answer with "D" for directory.

ECHO _
ECHO _
ECHO _

ECHO When/If prompted with the question:
ECHO _
ECHO Overwrite (...........)
ECHO (Yes/No/All)?
ECHO _
ECHO You should answer with "A" for "All"
ECHO _

@echo on


"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.exe"
MyCompany.Applications.MyFirstApplication.sln /Rebuild Release


XCOPY .\Presentation.Web1\*.*
c:\wutemp\ReleaseBuild_Web_MyCompany_Applications_MyFirstApplication
/EXCLUDE:.\exclude.txt /e/s






copy this into "exclude.txt" and do not include this line
..pdb
Build_WebSite.bat
Build_WinForms.bat
exclude.txt
..sln
..vbproj
..csproj


alter the paths and filenames (for your .sln) as needed.
run the .bat file
 
M

Michael Nemtsev

Hello isamusetu,

Btw, the VS 2005 (at least with SP1) has the release option in the dropdown
list of the solution configuration

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

i> I build a website solution by using visual studio 2005, how can I
i> build the "release" version, because I just find the "debug" in the
i> IDE and it seems it's necessary to append the configuration manually.
i>
 
F

Frans Bouma [C# MVP]

isamusetu said:
I build a website solution by using visual studio 2005, how can I
build the "release" version, because I just find the "debug" in the
IDE and it seems it's necessary to append the configuration manually.

you should in the web.config define debug to false, it's true by
default. Until then, you will get debug builds of your website.

FB

--
------------------------------------------------------------------------
Lead developer of LLBLGen Pro, the productive O/R mapper for .NET
LLBLGen Pro website: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top