25 lines
751 B
XML
25 lines
751 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp3.0;net472</TargetFrameworks>
|
|
|
|
<!-- allow skipped tests -->
|
|
<NoWarn>$(NoWarn);xUnit1004</NoWarn>
|
|
<!-- allow unused theory parameters -->
|
|
<NoWarn>$(NoWarn);xUnit1026</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\src\contentFiles\cs\netstandard2.0\EventSourceTestCollection.cs" Link="EventSourceTestCollection.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Testing" />
|
|
<Reference Include="System.Runtime.InteropServices.RuntimeInformation" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
|
|
<Reference Include="System.Net.Http" />
|
|
</ItemGroup>
|
|
</Project>
|