Skip to content

Commit

Permalink
update installer
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed May 24, 2023
1 parent a379fcc commit 96f12d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
5 changes: 1 addition & 4 deletions Installer/Installer.cs
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -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
{
Expand Down

0 comments on commit 96f12d6

Please sign in to comment.