forked from binarythistle/S04E01---.NET-5-GraphQL-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommanderGQL.csproj
More file actions
18 lines (15 loc) · 747 Bytes
/
Copy pathCommanderGQL.csproj
File metadata and controls
18 lines (15 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GraphQL.Server.Ui.Voyager" Version="4.4.1" />
<PackageReference Include="HotChocolate.AspNetCore" Version="11.0.8" />
<PackageReference Include="HotChocolate.Data.Entityframework" Version="11.0.8" />
<PackageReference Include="Microsoft.EntityframeworkCore.Design" Version="5.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityframeworkCore.SqlServer" Version="5.0.2" />
</ItemGroup>
</Project>