|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | 2 | <PropertyGroup> |
4 | 3 | <TargetFramework>netstandard2.0</TargetFramework> |
5 | | - <Version>9.4.7</Version> |
| 4 | + <Version>9.5.10</Version> |
6 | 5 | <Authors>JusterZhu</Authors> |
7 | 6 | <Description>Provides functions related to upgrade and update programs.</Description> |
8 | 7 | <ApplicationIcon>GeneralUpdate.ico</ApplicationIcon> |
9 | 8 | <PackageIcon>GeneralUpdate.png</PackageIcon> |
10 | 9 | <SignAssembly>False</SignAssembly> |
11 | 10 | <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> |
13 | 12 | <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> |
14 | 13 | <PackageProjectUrl>https://github.com/JusterZhu/GeneralUpdate</PackageProjectUrl> |
15 | 14 | <LangVersion>default</LangVersion> |
|
21 | 20 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
22 | 21 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
23 | 22 | </PropertyGroup> |
24 | | - |
25 | 23 | <ItemGroup> |
26 | 24 | <Compile Include="..\GeneralUpdate.Common\Compress\CompressProvider.cs" Link="Common\CompressProvider.cs" /> |
27 | 25 | <Compile Include="..\GeneralUpdate.Common\Compress\ICompressionStrategy.cs" Link="Common\ICompressionStrategy.cs" /> |
|
85 | 83 | <Compile Include="..\GeneralUpdate.Differential\Binary\StrangeCRC.cs" Link="Common\StrangeCRC.cs" /> |
86 | 84 | <Compile Include="..\GeneralUpdate.Differential\DifferentialCore.cs" Link="Common\DifferentialCore.cs" /> |
87 | 85 | </ItemGroup> |
88 | | - |
89 | 86 | <ItemGroup> |
90 | 87 | <PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.0" /> |
91 | 88 | <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" /> |
92 | 89 | <PackageReference Include="System.Collections.Immutable" Version="9.0.0" /> |
93 | 90 | <PackageReference Include="System.Net.Http" Version="4.3.4" /> |
94 | 91 | <PackageReference Include="System.Net.Requests" Version="4.3.0" /> |
95 | 92 | </ItemGroup> |
96 | | - |
97 | 93 | <ItemGroup> |
98 | 94 | <None Update="GeneralUpdate.ico"> |
99 | 95 | <Pack>True</Pack> |
100 | 96 | </None> |
101 | 97 | </ItemGroup> |
102 | | - |
103 | 98 | <ItemGroup> |
104 | 99 | <None Update="GeneralUpdate.png"> |
105 | 100 | <Pack>True</Pack> |
106 | 101 | </None> |
107 | 102 | </ItemGroup> |
108 | | - |
109 | 103 | <ItemGroup> |
110 | 104 | <Folder Include="Common\" /> |
111 | 105 | </ItemGroup> |
112 | | - |
113 | 106 | </Project> |
0 commit comments