-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTransitAnalyticsAPI.csproj
More file actions
28 lines (24 loc) · 1.11 KB
/
TransitAnalyticsAPI.csproj
File metadata and controls
28 lines (24 loc) · 1.11 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>c72737cf-4d0c-4d9b-a42d-6b2384fd5d4e</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="33.1.0" />
<PackageReference Include="EFCore.NamingConventions" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
</ItemGroup>
<ItemGroup>
<Compile Remove="TransitAnalyticsAPI.Tests/**/*.cs" />
<Content Remove="TransitAnalyticsAPI.Tests/**/*" />
<EmbeddedResource Remove="TransitAnalyticsAPI.Tests/**/*.resx" />
<None Remove="TransitAnalyticsAPI.Tests/**/*" />
</ItemGroup>
</Project>