-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathDotnet6.GraphQL4.Store.WebAPI.csproj
32 lines (26 loc) · 1.65 KB
/
Dotnet6.GraphQL4.Store.WebAPI.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
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<UserSecretsId>50d27449-38cf-4054-be72-138f16c2f4e3</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serilog.AspNetCore" Version="$(Serilog_Version)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GraphQL" Version="$(GraphQL_Version)" />
<PackageReference Include="GraphQL.DataLoader" Version="$(GraphQL_Version)" />
<PackageReference Include="GraphQL.MicrosoftDI" Version="$(GraphQL_Version)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GraphQL.Server.Transports.AspNetCore" Version="$(GraphQL_Server_Version)" />
<PackageReference Include="GraphQL.Server.Transports.AspNetCore.SystemTextJson" Version="$(GraphQL_Server_Version)" />
<PackageReference Include="GraphQL.Server.Transports.Subscriptions.WebSockets " Version="$(GraphQL_Server_Version)" />
<PackageReference Include="GraphQL.Server.Ui.Playground" Version="$(GraphQL_Server_Version)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Dotnet6.GraphQL4.CrossCutting\Dotnet6.GraphQL4.CrossCutting.csproj" />
<ProjectReference Include="..\Dotnet6.GraphQL4.Domain.Abstractions\Dotnet6.GraphQL4.Domain.Abstractions.csproj" />
<ProjectReference Include="..\Dotnet6.GraphQL4.Store.Domain\Dotnet6.GraphQL4.Store.Domain.csproj" />
<ProjectReference Include="..\Dotnet6.GraphQL4.Store.Repositories\Dotnet6.GraphQL4.Store.Repositories.csproj" />
<ProjectReference Include="..\Dotnet6.GraphQL4.Store.Services\Dotnet6.GraphQL4.Store.Services.csproj" />
</ItemGroup>
</Project>