24 lines
676 B
XML
24 lines
676 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp2.2;net461</TargetFrameworks>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\src\**\*.cs"
|
|
Exclude="
|
|
..\src\BenchmarkRunner\**\*.cs;
|
|
..\src\StackTrace\ExceptionDetails\**\*.cs;
|
|
" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="System.Threading.Tasks.Extensions" />
|
|
<Reference Include="System.Security.Cryptography.Cng" />
|
|
<Reference Include="System.Runtime.CompilerServices.Unsafe" />
|
|
<Reference Include="System.IO.Pipelines" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|