-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathLiftLog.Api.csproj
41 lines (36 loc) · 1.76 KB
/
LiftLog.Api.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ContainerRepository>liftlog-api</ContainerRepository>
<!-- Enums not handled exhaustively with numbers -->
<NoWarn>CS8524</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LiftLog.Lib\LiftLog.Lib.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="cuid.net" Version="6.0.0" />
<PackageReference Include="FluentValidation" Version="11.11.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.11.0" />
<PackageReference Include="EFCore.NamingConventions" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.2" />
<PackageReference Include="OpenAI-DotNet" Version="8.4.1" />
<PackageReference Include="Google.Apis.AndroidPublisher.v3" Version="1.68.0.3654" />
</ItemGroup>
<ItemGroup>
<None Update="AiWorkoutPlan.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="AiSessionBlueprint.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>