diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-09-23 20:27:53 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-09-23 20:27:53 +0300 |
| commit | 138923dc32b34d67ddd4e0daf23802513baaeb34 (patch) | |
| tree | 85793006b8de42a738dba98420bdc8cd9f7764fd /Software/Visual_Studio/Tango.AdvancedInstaller | |
| parent | aaba0f6c6e2c976f57561a8b15b113f800283da5 (diff) | |
| download | Tango-138923dc32b34d67ddd4e0daf23802513baaeb34.tar.gz Tango-138923dc32b34d67ddd4e0daf23802513baaeb34.zip | |
Added work around to FSE installer rare error.
Added MSI file version update on Advanced Installer API builder.
Diffstat (limited to 'Software/Visual_Studio/Tango.AdvancedInstaller')
| -rw-r--r-- | Software/Visual_Studio/Tango.AdvancedInstaller/InstallerBuilder.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.AdvancedInstaller/InstallerBuilder.cs b/Software/Visual_Studio/Tango.AdvancedInstaller/InstallerBuilder.cs index 2beb849ea..40d18c991 100644 --- a/Software/Visual_Studio/Tango.AdvancedInstaller/InstallerBuilder.cs +++ b/Software/Visual_Studio/Tango.AdvancedInstaller/InstallerBuilder.cs @@ -85,6 +85,9 @@ namespace Tango.AdvancedInstaller command = new CmdCommand(AdvancedInstallerPath, $"/edit \"{ProjectFile}\" /SetPackageName \"{outputFile}\" -buildname DefaultBuild"); command.Run().Wait(); + command = new CmdCommand(AdvancedInstallerPath, $"/edit \"{ProjectFile}\" /SetPackageName \"{Path.ChangeExtension(outputFile, ".msi")}\" -buildname DefaultBuild"); + command.Run().Wait(); + command = new CmdCommand(AdvancedInstallerPath, $"/rebuild \"{ProjectFile}\""); command.Timeout = TimeSpan.FromMinutes(2); command.Run().Wait(); |
