|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 |
| - <PropertyGroup> |
4 |
| - <TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks> |
5 |
| - <IsTrimmable>true</IsTrimmable> |
6 |
| - <EnableTrimAnalyzer>true</EnableTrimAnalyzer> |
7 |
| - <SignAssembly>true</SignAssembly> |
8 |
| - <AssemblyOriginatorKeyFile>../../assets/ICSharpCode.SharpZipLib.snk</AssemblyOriginatorKeyFile> |
9 |
| - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>netstandard2.0;netstandard2.1;net462;net6.0</TargetFrameworks> |
| 5 | + <IsTrimmable>true</IsTrimmable> |
| 6 | + <EnableTrimAnalyzer>true</EnableTrimAnalyzer> |
| 7 | + <SignAssembly>true</SignAssembly> |
| 8 | + <AssemblyOriginatorKeyFile>../../assets/ICSharpCode.SharpZipLib.snk</AssemblyOriginatorKeyFile> |
| 9 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
10 | 10 | <GenerateDocumentationFile>true</GenerateDocumentationFile>
|
11 | 11 | <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
12 |
| - </PropertyGroup> |
13 |
| - |
14 |
| - <!-- Nuget specific tags --> |
15 |
| - <PropertyGroup> |
16 |
| - <Version>1.4.2</Version> |
17 |
| - <FileVersion>$(Version).13</FileVersion> |
18 |
| - <AssemblyVersion>$(FileVersion)</AssemblyVersion> |
19 |
| - <PackageId>SharpZipLib</PackageId> |
20 |
| - <Company>ICSharpCode</Company> |
21 |
| - <Authors>ICSharpCode</Authors> |
22 |
| - <Description>SharpZipLib (#ziplib, formerly NZipLib) is a compression library for Zip, GZip, BZip2, and Tar written entirely in C# for .NET. It is implemented as an assembly (installable in the GAC), and thus can easily be incorporated into other projects (in any .NET language)</Description> |
| 12 | + </PropertyGroup> |
| 13 | + |
| 14 | + <!-- Nuget specific tags --> |
| 15 | + <PropertyGroup> |
| 16 | + <Version>1.4.2</Version> |
| 17 | + <FileVersion>$(Version).13</FileVersion> |
| 18 | + <AssemblyVersion>$(FileVersion)</AssemblyVersion> |
| 19 | + <PackageId>SharpZipLib</PackageId> |
| 20 | + <Company>ICSharpCode</Company> |
| 21 | + <Authors>ICSharpCode</Authors> |
| 22 | + <Description>SharpZipLib (#ziplib, formerly NZipLib) is a compression library for Zip, GZip, BZip2, and Tar written entirely in C# for .NET. It is implemented as an assembly (installable in the GAC), and thus can easily be incorporated into other projects (in any .NET language)</Description> |
23 | 23 | <PackageLicenseExpression>MIT</PackageLicenseExpression>
|
24 | 24 | <PackageProjectUrl>http://icsharpcode.github.io/SharpZipLib/</PackageProjectUrl>
|
25 | 25 | <PackageIcon>images/sharpziplib-nuget-256x256.png</PackageIcon>
|
26 |
| - <RepositoryUrl>https://github.com/icsharpcode/SharpZipLib</RepositoryUrl> |
27 |
| - <Copyright>Copyright © 2000-2022 SharpZipLib Contributors</Copyright> |
28 |
| - <PackageTags>Compression Library Zip GZip BZip2 LZW Tar</PackageTags> |
29 |
| - <NeutralLanguage>en-US</NeutralLanguage> |
30 |
| - <PackageReleaseNotes> |
31 |
| -Please see https://github.com/icsharpcode/SharpZipLib/wiki/Release-1.4.2 for more information.</PackageReleaseNotes> |
32 |
| - <PackageProjectUrl>https://github.com/icsharpcode/SharpZipLib</PackageProjectUrl> |
33 |
| - </PropertyGroup> |
34 |
| - |
35 |
| - <ItemGroup> |
36 |
| - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> |
37 |
| - </ItemGroup> |
| 26 | + <RepositoryUrl>https://github.com/icsharpcode/SharpZipLib</RepositoryUrl> |
| 27 | + <Copyright>Copyright © 2000-2022 SharpZipLib Contributors</Copyright> |
| 28 | + <PackageTags>Compression Library Zip GZip BZip2 LZW Tar</PackageTags> |
| 29 | + <NeutralLanguage>en-US</NeutralLanguage> |
| 30 | + <PackageReleaseNotes> |
| 31 | + Please see https://github.com/icsharpcode/SharpZipLib/wiki/Release-1.4.2 for more information. |
| 32 | + </PackageReleaseNotes> |
| 33 | + <PackageProjectUrl>https://github.com/icsharpcode/SharpZipLib</PackageProjectUrl> |
| 34 | + </PropertyGroup> |
38 | 35 |
|
39 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> |
| 36 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net462' "> |
40 | 37 | <PackageReference Include="System.Memory" Version="4.5.4" />
|
41 | 38 | <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.2" />
|
42 | 39 | </ItemGroup>
|
43 | 40 |
|
44 | 41 | <ItemGroup>
|
45 |
| - <None Include="../../assets/sharpziplib-nuget-256x256.png"> |
46 |
| - <Pack>True</Pack> |
47 |
| - <PackagePath>images</PackagePath> |
48 |
| - </None> |
49 |
| - </ItemGroup> |
50 |
| - |
| 42 | + <None Include="../../assets/sharpziplib-nuget-256x256.png" Pack="True" PackagePath="images" /> |
| 43 | + </ItemGroup> |
| 44 | + |
51 | 45 | </Project>
|
0 commit comments