-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathZlib.csproj
49 lines (49 loc) · 2.17 KB
/
Zlib.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Kamron Batman</Authors>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>preview</LangVersion>
<AssemblyVersion>1.11.0</AssemblyVersion>
<PackageVersion>1.11.0</PackageVersion>
<RootNamespace>System.IO.Compression</RootNamespace>
<AssemblyName>Zlib.Bindings</AssemblyName>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Configurations>Debug;Release;Analyze</Configurations>
<NoWarn>NU1603</NoWarn>
<RuntimeIdentifiers>win-x64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Copyright>Copyright 2022</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/modernuo/Zlib.Bindings</PackageProjectUrl>
<Description>ZLib bindings for .NET 7</Description>
</PropertyGroup>
<ItemGroup>
<Content Include="runtimes\win-x64\native\libz.dll">
<Pack>true</Pack>
<PackagePath>runtimes/win-x64/native</PackagePath>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="runtimes\osx-x64\native\libz.dylib">
<Pack>true</Pack>
<PackagePath>runtimes/osx-x64/native</PackagePath>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="runtimes\osx-arm64\native\libz.dylib">
<Pack>true</Pack>
<PackagePath>runtimes/osx-arm64/native</PackagePath>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Compile Remove="zlib-src\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="zlib-src\**" />
</ItemGroup>
<ItemGroup>
<None Remove="zlib-src\**" />
</ItemGroup>
</Project>