forked from mihula/ProDotNetZip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProDotNetZipNetStandard.csproj
62 lines (52 loc) · 2.24 KB
/
ProDotNetZipNetStandard.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>ProDotNetZip</AssemblyName>
<Id>ProDotNetZip</Id>
<RootNamespace>Ionic.Zip</RootNamespace>
<OutputType>Library</OutputType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Authors>Original authors of DotNetZip and Rene Mihula (ProDotNetZip)</Authors>
<Description>ProDotNetZip is rip off the original DotNetZip code with limitation to NET standard subset and with fixed vulnerabilities.</Description>
<PackageIcon>dotnetzip.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/mihula/ProDotNetZip</PackageProjectUrl>
<PackageTags>zip, unzip, zlib, bzip2, compress, compression, archive, winzip, aes</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<RepositoryUrl>https://github.com/mihula/ProDotNetZip.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>AESCRYPTO;BZIP</DefineConstants>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Ionic.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Security.Permissions" Version="8.0.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.25">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="" />
<None Include="dotnetzip.png" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<!--
<ItemGroup>
<InternalsVisibleTo Include="ProDotNetZipNetStandardTest" />
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>ProDotNetZipNetStandardTest</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
-->
</Project>