From 39b58ce749b58d36d8487fda214ef99f4b2f9404 Mon Sep 17 00:00:00 2001 From: wieslawsoltes Date: Tue, 5 Mar 2019 13:30:13 +0000 Subject: [PATCH] Fix --- build.cake | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.cake b/build.cake index 831b8e01..29532a16 100644 --- a/build.cake +++ b/build.cake @@ -168,11 +168,10 @@ var packageInstallersAction = new Action ((configuration, platfor InnoSetup(installerScript.FullPath, new InnoSetupSettings { OutputDirectory = MakeAbsolute(zipDir), QuietMode = InnoSetupQuietMode.QuietWithProgress, - Defines = new Dictionary - { + Defines = new Dictionary { ["CONFIGURATION"] = configuration, ["BUILD"] = platform, - ["VERSION"] = version + ["VERSION"] = version } }); });