Skip to content

Commit 98e0e31

Browse files
committed
bump version
1 parent 12d328c commit 98e0e31

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

build/MicaSetup.Tools/MakeIcon.Cli/MakeIcon.Cli.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<UseWindowsForms>true</UseWindowsForms>
1010
<LangVersion>latest</LangVersion>
1111
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
12-
<AssemblyVersion>2.3.1.0</AssemblyVersion>
13-
<FileVersion>2.3.1.0</FileVersion>
14-
<Version>$(VersionPrefix)2.3.1.0</Version>
12+
<AssemblyVersion>2.3.2.0</AssemblyVersion>
13+
<FileVersion>2.3.2.0</FileVersion>
14+
<Version>$(VersionPrefix)2.3.2.0</Version>
1515
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1616
</PropertyGroup>
1717

build/MicaSetup.Tools/MakeIcon/MakeIcon.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<UseWindowsForms>true</UseWindowsForms>
99
<LangVersion>latest</LangVersion>
1010
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
11-
<AssemblyVersion>2.3.1.0</AssemblyVersion>
12-
<FileVersion>2.3.1.0</FileVersion>
13-
<Version>$(VersionPrefix)2.3.1.0</Version>
11+
<AssemblyVersion>2.3.2.0</AssemblyVersion>
12+
<FileVersion>2.3.2.0</FileVersion>
13+
<Version>$(VersionPrefix)2.3.2.0</Version>
1414
<ApplicationIcon>Resources\Images\Favicon.ico</ApplicationIcon>
1515
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1616
</PropertyGroup>

build/MicaSetup.Tools/MakeMica.Cli/MakeMica.Cli.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<LangVersion>latest</LangVersion>
9-
<AssemblyVersion>2.3.1.0</AssemblyVersion>
10-
<FileVersion>2.3.1.0</FileVersion>
11-
<Version>$(VersionPrefix)2.3.1.0</Version>
9+
<AssemblyVersion>2.3.2.0</AssemblyVersion>
10+
<FileVersion>2.3.2.0</FileVersion>
11+
<Version>$(VersionPrefix)2.3.2.0</Version>
1212
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1313
</PropertyGroup>
1414

build/MicaSetup.Tools/MakeMica/MakeMica.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<UseWPF>true</UseWPF>
88
<UseWindowsForms>true</UseWindowsForms>
99
<LangVersion>latest</LangVersion>
10-
<AssemblyVersion>2.3.1.0</AssemblyVersion>
11-
<FileVersion>2.3.1.0</FileVersion>
12-
<Version>$(VersionPrefix)2.3.1.0</Version>
10+
<AssemblyVersion>2.3.2.0</AssemblyVersion>
11+
<FileVersion>2.3.2.0</FileVersion>
12+
<Version>$(VersionPrefix)2.3.2.0</Version>
1313
<ApplicationIcon>Resources\Images\Favicon.ico</ApplicationIcon>
1414
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1515
</PropertyGroup>

build/MicaSetup/MicaInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ namespace MicaSetup;
77
/// </summary>
88
internal static class MicaInfo
99
{
10-
public const string Version = "2.3.1.0";
10+
public const string Version = "2.3.2.0";
1111
}

build/MicaSetup/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
[assembly: AssemblyDescription("MicaApp Setup")]
1414
[assembly: AssemblyCompany("Lemutec")]
1515
[assembly: AssemblyCopyright("Under MIT License. Copyright (c) Lemutec Contributors.")]
16-
[assembly: AssemblyVersion("2.3.1.0")]
17-
[assembly: AssemblyFileVersion("2.3.1.0")]
16+
[assembly: AssemblyVersion("2.3.2.0")]
17+
[assembly: AssemblyFileVersion("2.3.2.0")]
1818
[assembly: RequestExecutionLevel("admin")]
1919

2020
namespace MicaSetup;
@@ -59,7 +59,7 @@ internal static void Main()
5959
option.ExeName = "MicaApp.exe";
6060
option.DisplayName = $"{option.AppName}";
6161
option.DisplayIcon = $"{option.ExeName}";
62-
option.DisplayVersion = "2.3.1.0";
62+
option.DisplayVersion = "2.3.2.0";
6363
option.Publisher = "Lemutec";
6464
option.SetupName = $"{option.AppName} {"Setup".Tr()}";
6565
option.MessageOfPage1 = $"{option.AppName}";

build/MicaSetup/Program.un.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
[assembly: AssemblyDescription("MicaApp Uninst")]
1515
[assembly: AssemblyCompany("Lemutec")]
1616
[assembly: AssemblyCopyright("Under MIT License. Copyright (c) Lemutec Contributors.")]
17-
[assembly: AssemblyVersion("2.3.1.0")]
18-
[assembly: AssemblyFileVersion("2.3.1.0")]
17+
[assembly: AssemblyVersion("2.3.2.0")]
18+
[assembly: AssemblyFileVersion("2.3.2.0")]
1919
[assembly: RequestExecutionLevel("admin")]
2020

2121
namespace MicaSetup;
@@ -51,7 +51,7 @@ internal static void Main()
5151
option.ExeName = "MicaApp.exe";
5252
option.DisplayName = $"{option.AppName}";
5353
option.DisplayIcon = $"{option.ExeName}";
54-
option.DisplayVersion = "2.3.1.0";
54+
option.DisplayVersion = "2.3.2.0";
5555
option.Publisher = "Lemutec";
5656
option.SetupName = $"{option.AppName} {"UninstallProgram".Tr()}";
5757
option.MessageOfPage1 = $"{option.AppName}";

src/MicaApp/MicaApp.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<UseWindowsForms>false</UseWindowsForms>
99
<UseWinUI>false</UseWinUI>
1010
<LangVersion>latest</LangVersion>
11-
<AssemblyVersion>2.3.1.0</AssemblyVersion>
12-
<FileVersion>2.3.1.0</FileVersion>
13-
<Version>$(VersionPrefix)2.3.1.0</Version>
11+
<AssemblyVersion>2.3.2.0</AssemblyVersion>
12+
<FileVersion>2.3.2.0</FileVersion>
13+
<Version>$(VersionPrefix)2.3.2.0</Version>
1414
<Authors>Lemutec</Authors>
1515
<Company>Lemutec</Company>
1616
<Platforms>AnyCPU;x64</Platforms>

0 commit comments

Comments
 (0)