From 96f12d613061ed776b2f7d1c2836c7cabdb007c5 Mon Sep 17 00:00:00 2001 From: Chuong Ho Date: Wed, 24 May 2023 15:04:40 +0800 Subject: [PATCH] update installer --- CHANGELOG.md | 3 +++ Installer/Installer.cs | 5 +---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c06cdd..b40a036 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Changelog +- 2023-05-24 **2.0.0** + - Add support Version 2024 + - Improvement user interface - 2023-03-29 **1.0.9** - Fixed issue load add-in out range exception parameter name [#2](https://github.com/chuongmep/CadAddinManager/issues/2) - Fixed issue load add-in use CAD MEP [#6](https://github.com/chuongmep/CadAddinManager/issues/6). diff --git a/Installer/Installer.cs b/Installer/Installer.cs index 0a48f4b..7a82d7a 100644 --- a/Installer/Installer.cs +++ b/Installer/Installer.cs @@ -1,14 +1,11 @@ using System; using System.Collections.Generic; -using System.Diagnostics; using System.IO; -using System.Linq; using System.Text; using System.Text.RegularExpressions; using WixSharp; using WixSharp.CommonTasks; using WixSharp.Controls; -using File = System.IO.File; const string BundleName = "CadAddinManager.bundle"; @@ -17,7 +14,7 @@ const string projectName = "CadAddinManager"; const string outputName = "CadAddinManager"; const string outputDir = "output"; -const string version = "1.0.9"; +const string version = "2.0.0"; var fileName = new StringBuilder().Append(outputName).Append("-").Append(version); var project = new Project {