Skip to content

Commit 691c157

Browse files
committed
update nuget version
1 parent a6721aa commit 691c157

File tree

5 files changed

+10
-31
lines changed

5 files changed

+10
-31
lines changed

src/c#/GeneralUpdate.Bowl/GeneralUpdate.Bowl.csproj

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFramework>netstandard2.0</TargetFramework>
54
<LangVersion>default</LangVersion>
65
<Nullable>enable</Nullable>
76
<Description>Bowl is used to monitor whether the main program can start normally after an upgrade. If it detects that the main program crashes on startup, it will restore the backup.</Description>
8-
<Copyright>Copyright © 2025 JusterZhu. All rights reserved.</Copyright>
7+
<Copyright>Copyright © 2020-2026 JusterZhu. All rights reserved.</Copyright>
98
<PackageProjectUrl>https://github.com/GeneralLibrary/GeneralUpdate</PackageProjectUrl>
109
<PackageLicenseUrl>https://github.com/GeneralLibrary/GeneralUpdate?tab=MIT-1-ov-file#readme</PackageLicenseUrl>
1110
<RepositoryUrl>https://github.com/GeneralLibrary/GeneralUpdate</RepositoryUrl>
@@ -16,21 +15,18 @@
1615
<PackageTags>upgrade,update</PackageTags>
1716
<PackageReleaseNotes>Bowl is used to monitor whether the main program can start normally after an upgrade. If it detects that the main program crashes on startup, it will restore the backup.</PackageReleaseNotes>
1817
<PackageIcon>bowl.jpeg</PackageIcon>
19-
<Version>9.4.7</Version>
18+
<Version>9.5.10</Version>
2019
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2120
</PropertyGroup>
22-
2321
<ItemGroup>
2422
<None Update="bowl.jpeg">
2523
<Pack>True</Pack>
2624
</None>
2725
</ItemGroup>
28-
2926
<ItemGroup>
3027
<PackageReference Include="System.Collections.Immutable" Version="9.0.0" />
3128
<PackageReference Include="System.Text.Json" Version="9.0.0" />
3229
</ItemGroup>
33-
3430
<ItemGroup>
3531
<Compile Include="..\GeneralUpdate.Common\Compress\CompressProvider.cs" Link="Common\CompressProvider.cs" />
3632
<Compile Include="..\GeneralUpdate.Common\Compress\ICompressionStrategy.cs" Link="Common\ICompressionStrategy.cs" />
@@ -87,14 +83,12 @@
8783
<Compile Include="..\GeneralUpdate.Common\Shared\Trace\TextTraceListener.cs" Link="Common\TextTraceListener.cs" />
8884
<Compile Include="..\GeneralUpdate.Common\Shared\Trace\WindowsOutputDebugListener.cs" Link="Common\WindowsOutputDebugListener.cs" />
8985
</ItemGroup>
90-
9186
<ItemGroup>
9287
<Content Include="Applications\**\*">
9388
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
9489
<PackageCopyToOutput>true</PackageCopyToOutput>
9590
</Content>
9691
</ItemGroup>
97-
9892
<ItemGroup>
9993
<Folder Include="Common\" />
10094
</ItemGroup>

src/c#/GeneralUpdate.ClientCore/GeneralUpdate.ClientCore.csproj

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>9.4.7</Version>
4+
<Version>9.5.10</Version>
65
<Authors>JusterZhu</Authors>
76
<Description>Provides functions related to upgrade and update programs.</Description>
87
<ApplicationIcon>GeneralUpdate.ico</ApplicationIcon>
98
<PackageIcon>GeneralUpdate.png</PackageIcon>
109
<SignAssembly>False</SignAssembly>
1110
<RepositoryUrl>https://github.com/GeneralLibrary/GeneralUpdate</RepositoryUrl>
12-
<Copyright>Copyright © 2025 JusterZhu. All rights reserved.</Copyright>
11+
<Copyright>Copyright © 2020-2026 JusterZhu. All rights reserved.</Copyright>
1312
<PackageReleaseNotes>Provides high-performance, low-loss, resume-breakpoint, version-by-version update, binary differential update, incremental update function, configuration file retention update and other features</PackageReleaseNotes>
1413
<PackageProjectUrl>https://github.com/JusterZhu/GeneralUpdate</PackageProjectUrl>
1514
<LangVersion>default</LangVersion>
@@ -21,7 +20,6 @@
2120
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2221
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2322
</PropertyGroup>
24-
2523
<ItemGroup>
2624
<Compile Include="..\GeneralUpdate.Common\Compress\CompressProvider.cs" Link="Common\CompressProvider.cs" />
2725
<Compile Include="..\GeneralUpdate.Common\Compress\ICompressionStrategy.cs" Link="Common\ICompressionStrategy.cs" />
@@ -85,29 +83,24 @@
8583
<Compile Include="..\GeneralUpdate.Differential\Binary\StrangeCRC.cs" Link="Common\StrangeCRC.cs" />
8684
<Compile Include="..\GeneralUpdate.Differential\DifferentialCore.cs" Link="Common\DifferentialCore.cs" />
8785
</ItemGroup>
88-
8986
<ItemGroup>
9087
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.0" />
9188
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
9289
<PackageReference Include="System.Collections.Immutable" Version="9.0.0" />
9390
<PackageReference Include="System.Net.Http" Version="4.3.4" />
9491
<PackageReference Include="System.Net.Requests" Version="4.3.0" />
9592
</ItemGroup>
96-
9793
<ItemGroup>
9894
<None Update="GeneralUpdate.ico">
9995
<Pack>True</Pack>
10096
</None>
10197
</ItemGroup>
102-
10398
<ItemGroup>
10499
<None Update="GeneralUpdate.png">
105100
<Pack>True</Pack>
106101
</None>
107102
</ItemGroup>
108-
109103
<ItemGroup>
110104
<Folder Include="Common\" />
111105
</ItemGroup>
112-
113106
</Project>

src/c#/GeneralUpdate.Common/GeneralUpdate.Common.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<LangVersion>default</LangVersion>
54
<Nullable>enable</Nullable>
65
<TargetFramework>netstandard2.0</TargetFramework>
76
<Title>GeneralUpdate.Common</Title>
87
<Authors>JusterZhu</Authors>
98
<Description>The infrastructure required to support all components is necessary, and this nuget package is essential.</Description>
10-
<Copyright>Copyright © 2025 JusterZhu. All rights reserved.</Copyright>
9+
<Copyright>Copyright © 2020-2026 JusterZhu. All rights reserved.</Copyright>
1110
<PackageProjectUrl>https://github.com/GeneralLibrary/GeneralUpdate</PackageProjectUrl>
1211
<PackageLicenseUrl>https://github.com/GeneralLibrary/GeneralUpdate?tab=MIT-1-ov-file#readme</PackageLicenseUrl>
1312
<PackageIcon>GeneralUpdate128.png</PackageIcon>
@@ -16,16 +15,14 @@
1615
<PackageTags>upgrade,update</PackageTags>
1716
<PackageReleaseNotes>The infrastructure required to support all components is necessary, and this nuget package is essential.</PackageReleaseNotes>
1817
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
19-
<Version>9.4.7</Version>
18+
<Version>9.5.10</Version>
2019
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2120
</PropertyGroup>
22-
2321
<ItemGroup>
2422
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
2523
<PackageReference Include="System.Collections.Immutable" Version="9.0.0" />
2624
<PackageReference Include="System.Text.Json" Version="9.0.0" />
2725
</ItemGroup>
28-
2926
<ItemGroup>
3027
<None Include="..\..\..\imgs\GeneralUpdate.ico">
3128
<Pack>True</Pack>

src/c#/GeneralUpdate.Core/GeneralUpdate.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<OutputType>Library</OutputType>
55
<PackageId>$(AssemblyName)</PackageId>
6-
<Version>9.4.7</Version>
6+
<Version>9.5.10</Version>
77
<Authors>JusterZhu</Authors>
88
<Company>juster.zhu</Company>
99
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1010
<ApplicationIcon>GeneralUpdate.ico</ApplicationIcon>
1111
<PackageIcon>GeneralUpdate.png</PackageIcon>
12-
<Copyright>Copyright © 2025 JusterZhu. All rights reserved.</Copyright>
12+
<Copyright>Copyright © 2020-2026 JusterZhu. All rights reserved.</Copyright>
1313
<Description>This section describes how to upgrade client applications.</Description>
1414
<PackageReleaseNotes>Provides high-performance, low-loss, resume-breakpoint, version-by-version update, binary differential update, incremental update function, configuration file retention update and other features.</PackageReleaseNotes>
1515
<RepositoryUrl>https://github.com/JusterZhu/GeneralUpdate</RepositoryUrl>
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFramework>netstandard2.0</TargetFramework>
54
<ApplicationIcon>GeneralUpdate.ico</ApplicationIcon>
65
<PackageIcon>GeneralUpdate.png</PackageIcon>
76
<RepositoryUrl>https://github.com/JusterZhu/GeneralUpdate</RepositoryUrl>
87
<Description>The binary differential update function is provided, but the configuration file update function is reserved.</Description>
98
<Authors>JusterZhu</Authors>
10-
<Version>9.4.7</Version>
9+
<Version>9.5.10</Version>
1110
<PackageProjectUrl>https://github.com/GeneralLibrary/GeneralUpdate</PackageProjectUrl>
12-
<Copyright>Copyright © 2025 JusterZhu. All rights reserved.</Copyright>
11+
<Copyright>Copyright © 2020-2026 JusterZhu. All rights reserved.</Copyright>
1312
<LangVersion>default</LangVersion>
1413
<Nullable>enable</Nullable>
1514
<Title>GeneralUpdate.Differential</Title>
@@ -20,21 +19,17 @@
2019
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2120
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2221
</PropertyGroup>
23-
2422
<ItemGroup>
2523
<ProjectReference Include="..\GeneralUpdate.Common\GeneralUpdate.Common.csproj" />
2624
</ItemGroup>
27-
2825
<ItemGroup>
2926
<None Update="GeneralUpdate.ico">
3027
<Pack>True</Pack>
3128
</None>
3229
</ItemGroup>
33-
3430
<ItemGroup>
3531
<None Update="GeneralUpdate.png">
3632
<Pack>True</Pack>
3733
</None>
3834
</ItemGroup>
39-
4035
</Project>

0 commit comments

Comments
 (0)