-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1662aa
commit 4e3ebec
Showing
1 changed file
with
45 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,45 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<DefaultItemExcludes>$(DefaultItemExcludes);Interop\Libraries.*.cs</DefaultItemExcludes> | ||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<Description>Cross platform .NET Wrapper of Miniz based on MiniZ.Net by ActuallyaDeviloper. https://github.com/ActuallyaDeviloper/MiniZ.Net</Description> | ||
<Authors>Jason Millard</Authors> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<PackOnBuild>true</PackOnBuild> | ||
<Copyright>Copyright 2021</Copyright> | ||
<AssemblyName>NetMiniZ</AssemblyName> | ||
<AssemblyVersion>1.3.0</AssemblyVersion> | ||
<PackageId>NetMiniZ</PackageId> | ||
<PackageVersion>1.3.0-preview.0</PackageVersion> | ||
<PackageProjectUrl>https://github.com/jsm174/net-miniz</PackageProjectUrl> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<InformationalVersion>$(AssemblyVersion)$(PackagePrereleaseIdentifier)</InformationalVersion> | ||
</PropertyGroup> | ||
<!-- Give an initial value based on the operating system where it's currently running on. --> | ||
<PropertyGroup Condition="'$(TargetOS)' == ''"> | ||
<TargetOS Condition="$([MSBuild]::IsOSPlatform('Linux'))">Linux</TargetOS> | ||
<TargetOS Condition="$([MSBuild]::IsOSPlatform('OSX'))">OSX</TargetOS> | ||
<TargetOS Condition="$([MSBuild]::IsOSPlatform('Windows'))">Windows</TargetOS> | ||
</PropertyGroup> | ||
<!-- Append target operating system to output path --> | ||
<PropertyGroup> | ||
<OutputPath>$(MSBuildThisFileDirectory)bin\$(Platform)\$(Configuration)\$(TargetFramework)\$(TargetOS)</OutputPath> | ||
<IntermediateOutputPath>$(BaseIntermediateOutputPath)\$(Platform)\$(Configuration)\$(TargetFramework)\$(TargetOS)\</IntermediateOutputPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Interop\Libraries.$(TargetOS).cs"> | ||
<Link>Interop\Libraries.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<!-- Include .NET Standard packages on Linux and macOS --> | ||
<ItemGroup> | ||
<None Include="$(MSBuildThisFileDirectory)bin\$(Platform)\$(Configuration)\netstandard2.0\Linux\NetMiniZ.dll" Pack="true" PackagePath="runtimes\linux\lib\netstandard2.0"/> | ||
<None Include="$(MSBuildThisFileDirectory)bin\$(Platform)\$(Configuration)\netstandard2.0\OSX\NetMiniZ.dll" Pack="true" PackagePath="runtimes\osx\lib\netstandard2.0"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="LICENSE.txt"/> | ||
</ItemGroup> | ||
</Project> | ||
<?xml version="1.0"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<DefaultItemExcludes>$(DefaultItemExcludes);Interop\Libraries.*.cs</DefaultItemExcludes> | ||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<Description>Cross platform .NET Wrapper of Miniz based on MiniZ.Net by ActuallyaDeviloper. https://github.com/ActuallyaDeviloper/MiniZ.Net</Description> | ||
<Authors>Jason Millard</Authors> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<PackOnBuild>true</PackOnBuild> | ||
<Copyright>Copyright 2021</Copyright> | ||
<AssemblyName>NetMiniZ</AssemblyName> | ||
<AssemblyVersion>1.3.0</AssemblyVersion> | ||
<PackageId>NetMiniZ</PackageId> | ||
<PackageVersion>1.3.0-preview.1</PackageVersion> | ||
<PackageProjectUrl>https://github.com/jsm174/net-miniz</PackageProjectUrl> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<InformationalVersion>$(AssemblyVersion)$(PackagePrereleaseIdentifier)</InformationalVersion> | ||
</PropertyGroup> | ||
<!-- Give an initial value based on the operating system where it's currently running on. --> | ||
<PropertyGroup Condition="'$(TargetOS)' == ''"> | ||
<TargetOS Condition="$([MSBuild]::IsOSPlatform('Linux'))">Linux</TargetOS> | ||
<TargetOS Condition="$([MSBuild]::IsOSPlatform('OSX'))">OSX</TargetOS> | ||
<TargetOS Condition="$([MSBuild]::IsOSPlatform('Windows'))">Windows</TargetOS> | ||
</PropertyGroup> | ||
<!-- Append target operating system to output path --> | ||
<PropertyGroup> | ||
<OutputPath>$(MSBuildThisFileDirectory)bin\$(Platform)\$(Configuration)\$(TargetFramework)\$(TargetOS)</OutputPath> | ||
<IntermediateOutputPath>$(BaseIntermediateOutputPath)\$(Platform)\$(Configuration)\$(TargetFramework)\$(TargetOS)\</IntermediateOutputPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Interop\Libraries.$(TargetOS).cs"> | ||
<Link>Interop\Libraries.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<!-- Include .NET Standard packages on Linux and macOS --> | ||
<ItemGroup> | ||
<None Include="$(MSBuildThisFileDirectory)bin\$(Platform)\$(Configuration)\netstandard2.0\Linux\NetMiniZ.dll" Pack="true" PackagePath="runtimes\linux\lib\netstandard2.0"/> | ||
<None Include="$(MSBuildThisFileDirectory)bin\$(Platform)\$(Configuration)\netstandard2.0\OSX\NetMiniZ.dll" Pack="true" PackagePath="runtimes\osx\lib\netstandard2.0"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="LICENSE.txt"/> | ||
</ItemGroup> | ||
</Project> |