Skip to content

Commit

Permalink
release: v1.3.0-preview.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 7, 2021
1 parent a1662aa commit 4e3ebec
Showing 1 changed file with 45 additions and 44 deletions.
89 changes: 45 additions & 44 deletions src/NetMiniZ/NetMiniZ.csproj
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>

0 comments on commit 4e3ebec

Please sign in to comment.