Skip to content

Commit

Permalink
bits and bobs
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloszKrajewski committed Oct 2, 2023
1 parent bb6757f commit 779bcde
Show file tree
Hide file tree
Showing 14 changed files with 258 additions and 304 deletions.
20 changes: 13 additions & 7 deletions src/K4os.Compression.LZ4.Legacy/K4os.Compression.LZ4.Legacy.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net5.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<PackageTags>compression lz4 lz4net</PackageTags>
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net5.0;net6.0</TargetFrameworks>
<IsPackable>true</IsPackable>
<SignAssembly>true</SignAssembly>
<PackageTags>$(PackageTags) lz4net</PackageTags>
</PropertyGroup>
<Import Project="$(PublicAssemblyProps)" />
<ItemGroup>
<ProjectReference Include="..\K4os.Compression.LZ4\K4os.Compression.LZ4.csproj" />
</ItemGroup>
<Import Project="..\..\Common.targets" />
<Import Project="..\..\Signing.targets" />
</Project>
<ItemGroup>
<PackageReference Include="PolySharp" Version="1.13.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
103 changes: 0 additions & 103 deletions src/K4os.Compression.LZ4.Roundtrip/Program.cs

This file was deleted.

1 change: 0 additions & 1 deletion src/K4os.Compression.LZ4.Roundtrip/paket.references

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net5.0;net6.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<!--<Nullable>enable</Nullable>-->
<PackageTags>compression lz4 stream</PackageTags>
<IsPackable>true</IsPackable>
<SignAssembly>true</SignAssembly>
<PackageTags>$(PackageTags) stream</PackageTags>
<Nullable>disable</Nullable>
</PropertyGroup>
<Import Project="$(PublicAssemblyProps)" />
<ItemGroup>
<ProjectReference Include="..\K4os.Compression.LZ4\K4os.Compression.LZ4.csproj" />
</ItemGroup>
<Choose>
<When Condition="'$(TargetFramework)'=='net462' or '$(TargetFramework)'=='netstandard2.0'">
<When Condition=" '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'netstandard2.0' ">
<ItemGroup>
<PackageReference Include="System.IO.Pipelines" Version="5.0.2" />
</ItemGroup>
Expand All @@ -25,6 +26,10 @@
<ItemGroup>
<PackageReference Include="K4os.Hash.xxHash" Version="1.0.8" />
</ItemGroup>
<Import Project="..\..\Common.targets" />
<Import Project="..\..\Signing.targets" />
</Project>
<ItemGroup>
<PackageReference Include="PolySharp" Version="1.13.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
Loading

0 comments on commit 779bcde

Please sign in to comment.