-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathNetFabric.Hyperlinq.UnitTests.csproj
44 lines (36 loc) · 1.53 KB
/
NetFabric.Hyperlinq.UnitTests.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netcoreapp2.1</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)'!='netcoreapp2.1'">
<Compile Remove="**\*.Span.Tests.cs" />
<Compile Remove="**\*.ReadOnlySpan.Tests.cs" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Utils\FluentAssertions\**" />
<EmbeddedResource Remove="Utils\FluentAssertions\**" />
<None Remove="Utils\FluentAssertions\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="System.Interactive" Version="4.0.0-preview.6.build.801" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="2.6.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NetFabric.Hyperlinq.TestData\NetFabric.Hyperlinq.TestData.csproj" />
<ProjectReference Include="..\NetFabric.Hyperlinq\NetFabric.Hyperlinq.csproj" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="dotnet-reportgenerator-cli" Version="4.2.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="Generation\Return\" />
</ItemGroup>
</Project>