-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpaceflightsStagingSchema.csproj
More file actions
32 lines (26 loc) · 1.06 KB
/
SpaceflightsStagingSchema.csproj
File metadata and controls
32 lines (26 loc) · 1.06 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Flowthru" />
<PackageReference Include="Flowthru.Extensions.EFCore" />
<PackageReference Include="Flowthru.Extensions.EFCore.Bulk" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MathNet.Numerics" />
<PackageReference Include="Plotly.NET" />
<PackageReference Include="Plotly.NET.CSharp" />
<PackageReference Include="Plotly.NET.ImageExport" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
<PackageReference Include="Testcontainers.PostgreSql" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<Import Project="$(RepoRoot)build/FlowthruInRepoSwap.props"
Condition="'$(RepoRoot)' != '' AND Exists('$(RepoRoot)build/FlowthruInRepoSwap.props')" />
</Project>