forked from graphql-dotnet/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tests.props
20 lines (16 loc) · 924 Bytes
/
Tests.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<NoWarn>$(NoWarn);1591;IDE1006</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="Shouldly" Version="4.0.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="Moq" Version="4.16.0" />
<PackageReference Include="NSubstitute" Version="4.2.2" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.1.9" Condition="'$(TargetFramework)' == 'netcoreapp3.1'" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0" Condition="'$(TargetFramework)' == 'netcoreapp3.0'" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.2.0" Condition="'$(IsNetCore3OnwardsTarget)' == 'False'" />
</ItemGroup>
</Project>