2018-02-20 20:09:23 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-05-11 23:10:27 +00:00
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-06-30 15:43:04 +00:00
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2018-02-20 20:09:23 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-05-11 23:10:27 +00:00
|
|
|
<ItemGroup>
|
2019-02-18 23:52:06 +00:00
|
|
|
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
|
2018-05-11 23:10:27 +00:00
|
|
|
<PackageReference Include="System.Runtime.Intrinsics.Experimental" Version="4.5.0-rc1" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-02-20 20:09:23 +00:00
|
|
|
</Project>
|