Trying build with InnoSetup from NuGet package for easier maintaining.

This commit is contained in:
Robin 2016-05-31 22:26:47 +02:00
commit 3dff32b8e0
58 changed files with 6 additions and 12265 deletions

View file

@ -235,7 +235,7 @@ Function PackageDbgSymbolsZip {
# This function creates the installer
Function PackageInstaller {
$setupOutput = "$(get-location)\setup"
$innoSetup = "$(get-location)\greenshot\tools\innosetup\ISCC.exe"
$innoSetup = "$(get-location)\greenshot\packages\Tools.InnoSetup.5.5.9\tools\ISCC.exe"
$innoSetupFile = "$(get-location)\greenshot\releases\innosetup\setup.iss"
Write-Host "Starting $innoSetup $innoSetupFile"
$setupResult = Start-Process -wait -PassThru "$innoSetup" -ArgumentList "$innoSetupFile" -NoNewWindow -RedirectStandardOutput "$setupOutput.log" -RedirectStandardError "$setupOutput.error"