target only netstandard 2.0 and 2.1
This commit is contained in:
parent
676d59bf80
commit
bcaa7a9411
@ -1,15 +1,15 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PackageId>DTLib.XXHash</PackageId>
|
<PackageId>DTLib.XXHash</PackageId>
|
||||||
<VersionPrefix>1.0.0</VersionPrefix>
|
<VersionPrefix>1.0.1</VersionPrefix>
|
||||||
<Authors>Oleksandr Melnyk, Timerix22</Authors>
|
<Authors>Oleksandr Melnyk, Timerix22</Authors>
|
||||||
<PackageTags>hash;xxHash;DTLib</PackageTags>
|
<PackageTags>hash;xxHash;DTLib</PackageTags>
|
||||||
<Description>XXHash implementation in C# using intrinsics</Description>
|
<Description>XXHash implementation in C# using intrinsics</Description>
|
||||||
<PackageProjectUrl>https://github.com/Timerix22/DTLib.XXHash</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/Timerix22/DTLib.XXHash</PackageProjectUrl>
|
||||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
|
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
|
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@ -17,10 +17,10 @@
|
|||||||
<InternalsVisibleTo Include="DTLib.XXHash.PerformanceTest" />
|
<InternalsVisibleTo Include="DTLib.XXHash.PerformanceTest" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup >
|
||||||
<PackageReference Include="System.Buffers" Version="4.5.1" Condition="'$(TargetFramework)' == 'netstandard2.0'" />
|
<PackageReference Include="System.Buffers" Version="4.5.1"/>
|
||||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" Condition="'$(TargetFramework)' == 'netstandard2.0'"/>
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0"/>
|
||||||
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" Condition="'$(TargetFramework)' == 'netstandard2.0'"/>
|
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
Loading…
Reference in New Issue
Block a user