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