Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Build "Release" for asp.net website

2 views
Skip to first unread message

isamusetu

unread,
Apr 26, 2007, 8:42:02 PM4/26/07
to
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.

--
ISAMUSETU

sloan

unread,
Apr 26, 2007, 10:55:20 PM4/26/07
to

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


"isamusetu" <isam...@discussions.microsoft.com> wrote in message
news:0B854AFF-F661-482A...@microsoft.com...

Michael Nemtsev

unread,
Apr 27, 2007, 9:27:58 AM4/27/07
to
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>


Frans Bouma [C# MVP]

unread,
Apr 28, 2007, 4:56:05 AM4/28/07
to
isamusetu wrote:

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#)
------------------------------------------------------------------------

0 new messages