forked from graphql-dotnet/graphql-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GraphQL.Harness.csproj
27 lines (22 loc) · 1023 Bytes
/
GraphQL.Harness.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>net7.0;net6.0;net5.0;netcoreapp3.1</TargetFrameworks>
<Description>Example ASP.NET Core project to demonstrate GraphQL.NET setup</Description>
<IsPackable>false</IsPackable>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GraphQL.Server.Ui.Altair" Version="7.*" />
<PackageReference Include="GraphQL.Server.Ui.GraphiQL" Version="7.*" />
<PackageReference Include="GraphQL.Server.Ui.Playground" Version="7.*" />
<PackageReference Include="GraphQL.Server.Ui.Voyager" Version="7.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GraphQL.MicrosoftDI\GraphQL.MicrosoftDI.csproj" />
<ProjectReference Include="..\GraphQL.SystemTextJson\GraphQL.SystemTextJson.csproj" />
<ProjectReference Include="..\GraphQL.StarWars\GraphQL.StarWars.csproj" />
</ItemGroup>
<ItemGroup>
<Using Remove="System.Net.Http.Json" />
</ItemGroup>
</Project>