-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathFSharp.Data.GraphQL.IntegrationTests.Server.fsproj
More file actions
29 lines (25 loc) · 1.2 KB
/
FSharp.Data.GraphQL.IntegrationTests.Server.fsproj
File metadata and controls
29 lines (25 loc) · 1.2 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>$(DotNetVersion)</TargetFramework>
<UserSecretsId>FSharp.Data.GraphQL.IntegrationTests.Server</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FsToolkit.ErrorHandling.TaskResult" />
<PackageReference Include="Giraffe" />
<PackageReference Include="GraphQL.Server.Ui.Voyager" />
<PackageReference Include="HotChocolate.AspNetCore" />
<PackageReference Include="Microsoft.Extensions.Http" />
</ItemGroup>
<ItemGroup>
<None Include="ApplicationInsights.config" />
<Compile Include="Schema.fs" />
<Compile Include="Startup.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FSharp.Data.GraphQL.Server.Giraffe\FSharp.Data.GraphQL.Server.Giraffe.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.GraphQL.Server\FSharp.Data.GraphQL.Server.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.GraphQL.Server.AspNetCore\FSharp.Data.GraphQL.Server.AspNetCore.fsproj" />
</ItemGroup>
</Project>