-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKedroSpaceflightsGQL.csproj
More file actions
54 lines (45 loc) · 2.31 KB
/
KedroSpaceflightsGQL.csproj
File metadata and controls
54 lines (45 loc) · 2.31 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Required so the Web SDK doesn't generate a second entry point -->
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<!-- Flowthru: use project reference when building from source, otherwise NuGet -->
<ItemGroup Condition="Exists('../../../src/core/Flowthru/Flowthru.csproj')">
<ProjectReference Include="../../../src/core/Flowthru/Flowthru.csproj" />
</ItemGroup>
<ItemGroup Condition="!Exists('../../../src/core/Flowthru/Flowthru.csproj')">
<PackageReference Include="Flowthru" Version="*" />
</ItemGroup>
<!-- Flowthru GQL extension -->
<ItemGroup Condition="Exists('../../../src/extensions/Flowthru.Extensions.GQL/Flowthru.Extensions.GQL.csproj')">
<ProjectReference Include="../../../src/extensions/Flowthru.Extensions.GQL/Flowthru.Extensions.GQL.csproj" />
</ItemGroup>
<ItemGroup Condition="!Exists('../../../src/extensions/Flowthru.Extensions.GQL/Flowthru.Extensions.GQL.csproj')">
<PackageReference Include="Flowthru.Extensions.GQL" Version="*" />
</ItemGroup>
<ItemGroup>
<!-- GQL server (in-process demo) -->
<PackageReference Include="HotChocolate.AspNetCore" Version="15.1.14" />
<!-- In-process TestServer for hosting the GQL demo server without binding a port.
Remove this together with SpaceflightsGqlServer when using a real endpoint. -->
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="10.0.5" />
<!-- StrawberryShake client: Server metapackage bundles Transport.Http, Core,
and the MSBuild-driven codegen tool (no separate analyzer needed in v15) -->
<PackageReference Include="StrawberryShake.Server" Version="15.1.14" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
<PackageReference Include="Plotly.NET" Version="5.1.0" />
<PackageReference Include="Plotly.NET.CSharp" Version="0.13.0" />
<PackageReference Include="Plotly.NET.ImageExport" Version="6.1.0" />
</ItemGroup>
</Project>