|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Build "Release" for asp.net websiteI 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 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 Show quote "isamusetu" <isamus***@discussions.microsoft.com> wrote in message news:0B854AFF-F661-482A-BAB1-862B1DA96393@microsoft.com... > 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 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> isamusetu wrote:
> I build a website solution by using visual studio 2005, how can I you should in the web.config define debug to false, it's true by> build the "release" version, because I just find the "debug" in the > IDE and it seems it's necessary to append the configuration manually. 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#) ------------------------------------------------------------------------ |
|||||||||||||||||||||||