From dadc92bcfdd97083e368f15e9262bee5e1a3d04b Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Wed, 4 Jan 2012 18:18:10 +0000 Subject: [PATCH] Build procedure improved --- build-debug.bat | 5 +++++ build-release.bat | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 build-debug.bat create mode 100644 build-release.bat diff --git a/build-debug.bat b/build-debug.bat new file mode 100644 index 0000000..709155c --- /dev/null +++ b/build-debug.bat @@ -0,0 +1,5 @@ +@echo off +@rem Note that this script will only produce a .msi packet of your binaries and data. It will not compile your sources. +cd Builder +Builder IISMainHandler debug +move /Y IISMainHandler\product-debug.msi ..\IISMainHandler-debug.msi diff --git a/build-release.bat b/build-release.bat new file mode 100644 index 0000000..3242f08 --- /dev/null +++ b/build-release.bat @@ -0,0 +1,5 @@ +@echo off +@rem Note that this script will only produce a .msi packet of your binaries and data. It will not compile your sources. +cd Builder +Builder IISMainHandler release +move /Y IISMainHandler\product-release.msi ..\IISMainHandler-release.msi