This commit is contained in:
wieslawsoltes 2019-03-05 13:30:13 +00:00
Родитель 10bd1a2f6d
Коммит 39b58ce749
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -168,11 +168,10 @@ var packageInstallersAction = new Action<string,string> ((configuration, platfor
InnoSetup(installerScript.FullPath, new InnoSetupSettings {
OutputDirectory = MakeAbsolute(zipDir),
QuietMode = InnoSetupQuietMode.QuietWithProgress,
Defines = new Dictionary<string, string>
{
Defines = new Dictionary<string, string> {
["CONFIGURATION"] = configuration,
["BUILD"] = platform,
["VERSION"] = version
["VERSION"] = version }
});
});