-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTests.csproj
More file actions
87 lines (80 loc) · 3.93 KB
/
Copy pathTests.csproj
File metadata and controls
87 lines (80 loc) · 3.93 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' != 'true'">
<TargetFrameworks>netcoreapp2.1;net6.0;net8.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">
<TargetFrameworks>net48;netcoreapp2.1;net6.0;net8.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.3" />
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="RichardSzalay.MockHttp" Version="7.0.0" />
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="2.9.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GraphQL.AspNetCore3.JwtBearer\GraphQL.AspNetCore3.JwtBearer.csproj" />
<ProjectReference Include="..\Samples\ChatSchema\Chat.csproj" />
<ProjectReference Include="..\GraphQL.AspNetCore3\GraphQL.AspNetCore3.csproj" />
<PackageReference Include="GraphQL.SystemTextJson" Version="$(GraphQLVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.1.*" Condition="'$(TargetFramework)' == 'net48' OR '$(TargetFramework)' == 'netcoreapp2.1'" />
</ItemGroup>
<ItemGroup>
<Using Include="GraphQL" />
<Using Include="GraphQL.DI" />
<Using Include="GraphQL.MicrosoftDI" />
<Using Include="GraphQL.Transport" />
<Using Include="GraphQL.Types" />
<Using Include="GraphQL.SystemTextJson" />
<Using Include="Microsoft.AspNetCore.Builder" />
<Using Include="Microsoft.AspNetCore.Hosting" />
<Using Include="Microsoft.AspNetCore.Http" />
<Using Include="Microsoft.AspNetCore.TestHost" />
<Using Include="Microsoft.Extensions.DependencyInjection" />
<Using Include="Moq" />
<Using Include="Moq.Protected" />
<Using Include="GraphQL.AspNetCore3" />
<Using Include="GraphQL.AspNetCore3.WebSockets" />
<Using Include="Shouldly" />
<Using Include="System.Net.Http" />
<Using Include="System.Text" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing">
<Version>8.0.*</Version>
</PackageReference>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer">
<Version>8.0.*</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing">
<Version>6.0.*</Version>
</PackageReference>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer">
<Version>6.0.*</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1' OR '$(TargetFramework)' == 'net48'">
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing">
<Version>2.1.*</Version>
</PackageReference>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer">
<Version>2.1.*</Version>
</PackageReference>
</ItemGroup>
</Project>