diff --git a/build/MicaSetup.Tools/FetchVer/FetchVer.csproj b/build/MicaSetup.Tools/FetchVer/FetchVer.csproj index eec5cf4..02d7ca5 100644 --- a/build/MicaSetup.Tools/FetchVer/FetchVer.csproj +++ b/build/MicaSetup.Tools/FetchVer/FetchVer.csproj @@ -6,9 +6,9 @@ enable enable latest - 2.3.3.0 - 2.3.3.0 - $(VersionPrefix)2.3.3.0 + 2.3.4.0 + 2.3.4.0 + $(VersionPrefix)2.3.4.0 false diff --git a/build/MicaSetup.Tools/MICA/MICA.csproj b/build/MicaSetup.Tools/MICA/MICA.csproj index 56ed459..0c8c219 100644 --- a/build/MicaSetup.Tools/MICA/MICA.csproj +++ b/build/MicaSetup.Tools/MICA/MICA.csproj @@ -4,9 +4,9 @@ WinExe net472 latest - 2.3.3.0 - 2.3.3.0 - $(VersionPrefix)2.3.3.0 + 2.3.4.0 + 2.3.4.0 + $(VersionPrefix)2.3.4.0 Resources\Images\Favicon.ico false diff --git a/build/MicaSetup.Tools/MakeIcon.Cli/MakeIcon.Cli.csproj b/build/MicaSetup.Tools/MakeIcon.Cli/MakeIcon.Cli.csproj index afd791d..b6b4b27 100644 --- a/build/MicaSetup.Tools/MakeIcon.Cli/MakeIcon.Cli.csproj +++ b/build/MicaSetup.Tools/MakeIcon.Cli/MakeIcon.Cli.csproj @@ -9,9 +9,9 @@ true latest True - 2.3.3.0 - 2.3.3.0 - $(VersionPrefix)2.3.3.0 + 2.3.4.0 + 2.3.4.0 + $(VersionPrefix)2.3.4.0 false diff --git a/build/MicaSetup.Tools/MakeIcon/MakeIcon.csproj b/build/MicaSetup.Tools/MakeIcon/MakeIcon.csproj index 9b3c56d..4ede81e 100644 --- a/build/MicaSetup.Tools/MakeIcon/MakeIcon.csproj +++ b/build/MicaSetup.Tools/MakeIcon/MakeIcon.csproj @@ -8,9 +8,9 @@ true latest True - 2.3.3.0 - 2.3.3.0 - $(VersionPrefix)2.3.3.0 + 2.3.4.0 + 2.3.4.0 + $(VersionPrefix)2.3.4.0 Resources\Images\Favicon.ico false diff --git a/build/MicaSetup.Tools/MakeMica.Cli/MakeMica.Cli.csproj b/build/MicaSetup.Tools/MakeMica.Cli/MakeMica.Cli.csproj index d5e60ad..de173a4 100644 --- a/build/MicaSetup.Tools/MakeMica.Cli/MakeMica.Cli.csproj +++ b/build/MicaSetup.Tools/MakeMica.Cli/MakeMica.Cli.csproj @@ -6,9 +6,9 @@ enable enable latest - 2.3.3.0 - 2.3.3.0 - $(VersionPrefix)2.3.3.0 + 2.3.4.0 + 2.3.4.0 + $(VersionPrefix)2.3.4.0 false diff --git a/build/MicaSetup.Tools/MakeMica/MakeMica.csproj b/build/MicaSetup.Tools/MakeMica/MakeMica.csproj index 10d3ff7..c643063 100644 --- a/build/MicaSetup.Tools/MakeMica/MakeMica.csproj +++ b/build/MicaSetup.Tools/MakeMica/MakeMica.csproj @@ -7,9 +7,9 @@ true true latest - 2.3.3.0 - 2.3.3.0 - $(VersionPrefix)2.3.3.0 + 2.3.4.0 + 2.3.4.0 + $(VersionPrefix)2.3.4.0 Resources\Images\Favicon.ico false diff --git a/build/MicaSetup.Tools/PEImage/PEParser.csproj b/build/MicaSetup.Tools/PEImage/PEParser.csproj index d06a538..f74dd03 100644 --- a/build/MicaSetup.Tools/PEImage/PEParser.csproj +++ b/build/MicaSetup.Tools/PEImage/PEParser.csproj @@ -5,9 +5,9 @@ enable enable latest - 2.3.3.0 - 2.3.3.0 - $(VersionPrefix)2.3.3.0 + 2.3.4.0 + 2.3.4.0 + $(VersionPrefix)2.3.4.0 false diff --git a/build/MicaSetup/MicaInfo.cs b/build/MicaSetup/MicaInfo.cs index 8df7b6e..eaf83af 100644 --- a/build/MicaSetup/MicaInfo.cs +++ b/build/MicaSetup/MicaInfo.cs @@ -7,5 +7,5 @@ namespace MicaSetup; /// internal static class MicaInfo { - public const string Version = "2.3.3.0"; + public const string Version = "2.3.4.0"; } diff --git a/build/MicaSetup/Program.cs b/build/MicaSetup/Program.cs index 123ad60..65e74ce 100644 --- a/build/MicaSetup/Program.cs +++ b/build/MicaSetup/Program.cs @@ -13,8 +13,8 @@ [assembly: AssemblyDescription("MicaApp Setup")] [assembly: AssemblyCompany("Lemutec")] [assembly: AssemblyCopyright("Under MIT License. Copyright (c) Lemutec Contributors.")] -[assembly: AssemblyVersion("2.3.3.0")] -[assembly: AssemblyFileVersion("2.3.3.0")] +[assembly: AssemblyVersion("2.3.4.0")] +[assembly: AssemblyFileVersion("2.3.4.0")] [assembly: RequestExecutionLevel("admin")] namespace MicaSetup; @@ -60,7 +60,7 @@ internal static void Main() option.ExeName = "MicaApp.exe"; option.DisplayName = $"{option.AppName}"; option.DisplayIcon = $"{option.ExeName}"; - option.DisplayVersion = "2.3.3.0"; + option.DisplayVersion = "2.3.4.0"; option.Publisher = "Lemutec"; option.SetupName = $"{option.AppName} {"Setup".Tr()}"; option.MessageOfPage1 = $"{option.AppName}"; diff --git a/build/MicaSetup/Program.un.cs b/build/MicaSetup/Program.un.cs index 19d9352..7ef0c22 100644 --- a/build/MicaSetup/Program.un.cs +++ b/build/MicaSetup/Program.un.cs @@ -14,8 +14,8 @@ [assembly: AssemblyDescription("MicaApp Uninst")] [assembly: AssemblyCompany("Lemutec")] [assembly: AssemblyCopyright("Under MIT License. Copyright (c) Lemutec Contributors.")] -[assembly: AssemblyVersion("2.3.3.0")] -[assembly: AssemblyFileVersion("2.3.3.0")] +[assembly: AssemblyVersion("2.3.4.0")] +[assembly: AssemblyFileVersion("2.3.4.0")] [assembly: RequestExecutionLevel("admin")] namespace MicaSetup; @@ -52,7 +52,7 @@ internal static void Main() option.ExeName = "MicaApp.exe"; option.DisplayName = $"{option.AppName}"; option.DisplayIcon = $"{option.ExeName}"; - option.DisplayVersion = "2.3.3.0"; + option.DisplayVersion = "2.3.4.0"; option.Publisher = "Lemutec"; option.SetupName = $"{option.AppName} {"UninstallProgram".Tr()}"; option.MessageOfPage1 = $"{option.AppName}"; diff --git a/src/MicaApp/MicaApp.csproj b/src/MicaApp/MicaApp.csproj index 93a3a47..6959f6b 100644 --- a/src/MicaApp/MicaApp.csproj +++ b/src/MicaApp/MicaApp.csproj @@ -8,9 +8,9 @@ false false latest - 2.3.3.0 - 2.3.3.0 - $(VersionPrefix)2.3.3.0 + 2.3.4.0 + 2.3.4.0 + $(VersionPrefix)2.3.4.0 Lemutec Lemutec AnyCPU;x64