1 1.1 christos <Project Sdk="Microsoft.Build.NoTargets/3.5.6"> 2 1.1 christos 3 1.1 christos <PropertyGroup> 4 1.1 christos <TargetFramework>net6.0</TargetFramework> 5 1.1 christos <PackageId>madler.zlib.redist</PackageId> 6 1.1 christos <PackageId Condition="$([MSBuild]::IsOSPlatform('Windows'))">$(PackageId).win</PackageId> 7 1.1 christos <PackageId Condition="$([MSBuild]::IsOSPlatform('Linux'))">$(PackageId).linux</PackageId> 8 1.1 christos <PackageId Condition="$([MSBuild]::IsOSPlatform('OSX'))">$(PackageId).osx</PackageId> 9 1.1 christos <Copyright>(C) 1995-2024 Jean-loup Gailly and Mark Adler</Copyright> 10 1.1 christos <version>1.3.1</version> 11 1.1 christos <PackageDescription>NuGet Package for consuming native builds of zlib into .NET without complexity.</PackageDescription> 12 1.1 christos <!-- 13 1.1 christos Warns about not having any lib or ref assemblies (.NET Assemblies) in those directories. 14 1.1 christos Native only packages that is to be consumed in .NET should not require these. 15 1.1 christos --> 16 1.1 christos <NoWarn>NU5128</NoWarn> 17 1.1 christos <PackageOutputPath>$(MSBuildProjectDirectory)</PackageOutputPath> 18 1.1 christos <Authors>Jean-loup Gailly and Mark Adler</Authors> 19 1.1 christos </PropertyGroup> 20 1.1 christos 21 1.1 christos <ItemGroup> 22 1.1 christos <None Include="../../LICENSE" Pack="true" PackagePath="" /> 23 1.1 christos <!-- Package up Windows builds. --> 24 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Windows'))" Include="../vstudio/vc17/x86/ZlibDll$(Configuration)/zlibwapi.dll" Pack="true" PackagePath="runtimes/win-x86/native" /> 25 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Windows'))" Include="../vstudio/vc17/x64/ZlibDll$(Configuration)/zlibwapi.dll" Pack="true" PackagePath="runtimes/win-x64/native" /> 26 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Windows'))" Include="../vstudio/vc17/arm/ZlibDll$(Configuration)/zlibwapi.dll" Pack="true" PackagePath="runtimes/win-arm/native" /> 27 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Windows'))" Include="../vstudio/vc17/arm64/ZlibDll$(Configuration)/zlibwapi.dll" Pack="true" PackagePath="runtimes/win-arm64/native" /> 28 1.1 christos <!-- Include debug symbols as well as we never know if they might actually be needed in the future. --> 29 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Windows'))" Include="../vstudio/vc17/x86/ZlibDll$(Configuration)/zlibwapi.pdb" Pack="true" PackagePath="runtimes/win-x86/native" /> 30 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Windows'))" Include="../vstudio/vc17/x64/ZlibDll$(Configuration)/zlibwapi.pdb" Pack="true" PackagePath="runtimes/win-x64/native" /> 31 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Windows'))" Include="../vstudio/vc17/arm/ZlibDll$(Configuration)/zlibwapi.pdb" Pack="true" PackagePath="runtimes/win-arm/native" /> 32 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Windows'))" Include="../vstudio/vc17/arm64/ZlibDll$(Configuration)/zlibwapi.pdb" Pack="true" PackagePath="runtimes/win-arm64/native" /> 33 1.1 christos <!-- Package up Linux builds. --> 34 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Linux'))" Include="./linux-x86/libz.so" Pack="true" PackagePath="runtimes/linux-x86/native" /> 35 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Linux'))" Include="./linux-x64/libz.so" Pack="true" PackagePath="runtimes/linux-x64/native" /> 36 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Linux'))" Include="./linux-arm/libz.so" Pack="true" PackagePath="runtimes/linux-arm/native" /> 37 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('Linux'))" Include="./linux-arm64/libz.so" Pack="true" PackagePath="runtimes/linux-arm64/native" /> 38 1.1 christos <!-- Package up MacOS builds. --> 39 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('OSX'))" Include="./osx-x64/libz.dylib" Pack="true" PackagePath="runtimes/osx-x64/native" /> 40 1.1 christos <None Condition="$([MSBuild]::IsOSPlatform('OSX'))" Include="./osx-arm64/libz.dylib" Pack="true" PackagePath="runtimes/osx-arm64/native" /> 41 1.1 christos </ItemGroup> 42 1.1 christos 43 1.1 christos </Project> 44