diff --git a/AutoUpdater.NET/AutoUpdater.NET.csproj b/AutoUpdater.NET/AutoUpdater.NET.csproj index ec10cc0..afe8211 100644 --- a/AutoUpdater.NET/AutoUpdater.NET.csproj +++ b/AutoUpdater.NET/AutoUpdater.NET.csproj @@ -11,10 +11,10 @@ RBSoft AutoUpdater.NET Copyright © 2012-2024 RBSoft - 1.9.1.0 - 1.9.1.0 - 1.9.1.0 - 1.9.1.0 + 1.9.2.0 + 1.9.2.0 + 1.9.2.0 + 1.9.2.0 true AutoUpdater.NET.snk en diff --git a/AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec b/AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec index 86bb0e6..b0d4dd5 100644 --- a/AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec +++ b/AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec @@ -2,7 +2,7 @@ Autoupdater.NET.Official - 1.9.1.0 + 1.9.2.0 AutoUpdater.NET rbsoft false diff --git a/ZipExtractor/FormMain.Designer.cs b/ZipExtractor/FormMain.Designer.cs index 52995e3..1daef6e 100644 --- a/ZipExtractor/FormMain.Designer.cs +++ b/ZipExtractor/FormMain.Designer.cs @@ -63,6 +63,7 @@ private void InitializeComponent() this.textBoxInformation.BorderStyle = System.Windows.Forms.BorderStyle.None; this.textBoxInformation.Location = new System.Drawing.Point(96, 20); this.textBoxInformation.Name = "textBoxInformation"; + this.textBoxInformation.ReadOnly = true; this.textBoxInformation.Size = new System.Drawing.Size(514, 16); this.textBoxInformation.TabIndex = 4; this.textBoxInformation.Text = "Extracting..."; diff --git a/ZipExtractor/ZipExtractor.csproj b/ZipExtractor/ZipExtractor.csproj index 87e5053..a51283f 100644 --- a/ZipExtractor/ZipExtractor.csproj +++ b/ZipExtractor/ZipExtractor.csproj @@ -9,10 +9,10 @@ RBSoft ZipExtractor Copyright © 2012-2024 RBSoft - 1.5.1.0 - 1.5.1.0 - 1.5.1.0 - 1.5.1.0 + 1.5.2.0 + 1.5.2.0 + 1.5.2.0 + 1.5.2.0 ZipExtractor.ico app.manifest true diff --git a/appveyor.yml b/appveyor.yml index 7818846..eaf3dbc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ -version: 1.9.1.{build} +version: 1.9.2.{build} environment: - my_version: 1.9.1 + my_version: 1.9.2 my_secret: secure: vbPRaZLQYpGPr4BrZZ4p6TofpSZMud+FKtlpqjgO8aA= skip_branch_with_pr: true diff --git a/build.bat b/build.bat index 9d4c4f6..ea6aea4 100644 --- a/build.bat +++ b/build.bat @@ -1,25 +1,22 @@ +:: Build ZipExtractor +msbuild "ZipExtractor\ZipExtractor.csproj" /p:Configuration=Release /verbosity:minimal + :: .NET Framework 4.6.2 -msbuild "ZipExtractor\ZipExtractor.csproj" /p:TargetFramework=net462;Configuration=Release /verbosity:minimal msbuild "AutoUpdater.NET\AutoUpdater.NET.csproj" /p:OutputPath=build\lib\net462;TargetFramework=net462;Configuration=Release /verbosity:minimal :: .NET Core 3.1 -dotnet publish --configuration Release --framework netcoreapp3.1 "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework netcoreapp3.1 "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\netcoreapp3.1" :: .NET 5.0 -dotnet publish --configuration Release --framework net5.0-windows "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework net5.0-windows "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\net5.0-windows7.0" :: .NET 6.0 -dotnet publish --configuration Release --framework net6.0-windows "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework net6.0-windows "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\net6.0-windows7.0" :: .NET 7.0 -dotnet publish --configuration Release --framework net7.0-windows "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework net7.0-windows "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\net7.0-windows7.0" :: .NET 8.0 -dotnet publish --configuration Release --framework net8.0-windows "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework net8.0-windows "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\net8.0-windows7.0" :: Remove unnecessary files