From 3854f5d9f77b7de84036890784adfbce9ccaaa48 Mon Sep 17 00:00:00 2001 From: Luis Date: Mon, 29 Nov 2021 23:04:05 -0500 Subject: [PATCH] Update build.bat for version 0.18.0.0. --- build.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.bat b/build.bat index 7032c6f..7222588 100644 --- a/build.bat +++ b/build.bat @@ -5,7 +5,7 @@ echo Starting build... echo ------------------------------------------------------------- rem Set this to Release or Debug values -set dotnetConfiguration=Debug +set dotnetConfiguration=Release rem Build core tools\nuget restore Khernet.Core\Khernet.Core.sln @@ -20,7 +20,7 @@ cd Khernet.Installer "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" KhernetInstaller.iss rem Copy final installer to bin directory -set mainApp_path=bin\KhernetInstaller-0.17.0.0.exe +set mainApp_path=bin\KhernetInstaller-0.18.0.0.exe set installerDest=..\bin\Khernet.Installer if not exist %installerDest% mkdir %installerDest% if exist %mainApp_path% copy %mainApp_path% %installerDest%