From e834948f8cc84ba1fc057daf378c49157eedf4e2 Mon Sep 17 00:00:00 2001 From: sbohlen Date: Tue, 7 Dec 2010 21:18:59 +0000 Subject: [PATCH] Add build release convenience script --- build-release-all.cmd | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 build-release-all.cmd diff --git a/build-release-all.cmd b/build-release-all.cmd new file mode 100644 index 00000000..d5e04c2a --- /dev/null +++ b/build-release-all.cmd @@ -0,0 +1,23 @@ +@echo off +@echo . +@echo .. +@echo ... +@echo Running full Build Script, capturing output to buildlog.txt file... +@echo Start Time: %time% +build-support\tools\nant\bin\nant clean package -f:spring.build -D:project.build.sign=true -D:mstest.exe="c:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\mstest.exe" -D:package.version=1.3.1 -D:vs-net.mstest.bin.dir="c:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE" > buildlog.txt +@echo . +@echo .. +@echo ... +@echo Launching text file viewer to display buildlog.txt contents... +start "ignored but required placeholder window title argument" buildlog.txt +@echo . +@echo .. +@echo ... +@echo ************************ +@echo Build Complete! +@echo ************************ +@echo End Time: %time% +@echo    + + +