-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathstar-wars-api.fsproj
More file actions
37 lines (32 loc) · 1.77 KB
/
star-wars-api.fsproj
File metadata and controls
37 lines (32 loc) · 1.77 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
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>$(DotNetVersion)</TargetFramework>
<AssemblyName>FSharp.Data.GraphQL.Samples.StarWarsApi</AssemblyName>
<RootNamespace>FSharp.Data.GraphQL.Samples.StarWarsApi</RootNamespace>
</PropertyGroup>
<ItemGroup Label="PackageReferences">
<PackageReference Include="FSharp.Core" VersionOverride="9.0.*" />
<PackageReference Include="FsToolkit.ErrorHandling.TaskResult" />
<PackageReference Include="GraphQL.Server.Ui.Altair" />
<PackageReference Include="GraphQL.Server.Ui.GraphiQL" />
<PackageReference Include="GraphQL.Server.Ui.Voyager" />
<PackageReference Include="HotChocolate.AspNetCore" />
</ItemGroup>
<ItemGroup>
<None Include="ApplicationInsights.config" />
<Compile Include="Root.fs" />
<Compile Include="Policies.fs" />
<Compile Include="AuthorizationMiddleware.fs" />
<Compile Include="Schema.fs" />
<Compile Include="Startup.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup Label="ProjectReferences">
<ProjectReference Include="..\..\src\FSharp.Data.GraphQL.Server.AspNetCore\FSharp.Data.GraphQL.Server.AspNetCore.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.GraphQL.Server.Middleware\FSharp.Data.GraphQL.Server.Middleware.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.GraphQL.Server.Oxpecker\FSharp.Data.GraphQL.Server.Oxpecker.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.GraphQL.Server.Relay\FSharp.Data.GraphQL.Server.Relay.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" />
</ItemGroup>
</Project>