* Add .NET Core 2.1 as target for tests to allow testing for StackTraceHiddenAttribute handling * Customize EnhancedStackTrace "hidden" frames selection strategy depending on the runtime, and optimize attribute access for non-reflection-only assemblies * Add .NET Core 2.1 as target for benchmarks to allow benchmarking for it
11 lines
438 B
XML
11 lines
438 B
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp2.1;netcoreapp2.0;net462</TargetFrameworks>
|
|
<Configuration>Release</Configuration>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Ben.Demystifier\Ben.Demystifier.csproj" />
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.10.12" />
|
|
</ItemGroup>
|
|
</Project> |