forked from graphql-dotnet/graphql-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphQL.Harness.csproj
More file actions
27 lines (22 loc) · 1.02 KB
/
GraphQL.Harness.csproj
File metadata and controls
27 lines (22 loc) · 1.02 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>net10.0;net8.0;net6.0</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="8.*" />
<PackageReference Include="GraphQL.Server.Ui.GraphiQL" Version="8.*" />
<PackageReference Include="GraphQL.Server.Ui.Voyager" Version="8.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\GraphQL.MicrosoftDI\GraphQL.MicrosoftDI.csproj" />
<ProjectReference Include="..\..\src\GraphQL.SystemTextJson\GraphQL.SystemTextJson.csproj" />
<ProjectReference Include="..\..\src\GraphQL.StarWars\GraphQL.StarWars.csproj" />
<ProjectReference Include="..\GraphQL.Server.Polyfill\GraphQL.Server.Polyfill.csproj" />
</ItemGroup>
<ItemGroup>
<Using Remove="System.Net.Http.Json" />
</ItemGroup>
</Project>