diff options
| author | ivar <i@oiee.no> | 2025-12-03 21:49:20 +0100 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2025-12-03 21:49:20 +0100 |
| commit | cd70f54266d708867a1eb35870bc755bc5b2df32 (patch) | |
| tree | f0a8ec571ef3f345ac74293b4cb11918878b3ed5 /api/WhatApi/WhatApi.csproj | |
| parent | 5bd9ad8bd1740dcff179d66718532086304ca4c4 (diff) | |
| download | what-cd70f54266d708867a1eb35870bc755bc5b2df32.tar.xz what-cd70f54266d708867a1eb35870bc755bc5b2df32.zip | |
Refactor db
Diffstat (limited to 'api/WhatApi/WhatApi.csproj')
| -rw-r--r-- | api/WhatApi/WhatApi.csproj | 54 |
1 files changed, 28 insertions, 26 deletions
diff --git a/api/WhatApi/WhatApi.csproj b/api/WhatApi/WhatApi.csproj index c97c55e..91f3d3f 100644 --- a/api/WhatApi/WhatApi.csproj +++ b/api/WhatApi/WhatApi.csproj @@ -5,43 +5,45 @@ <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> - <UserSecretsId>5506c159-f534-4090-b80b-2703e1eb7f6c</UserSecretsId> - </PropertyGroup> + <UserSecretsId>5506c159-f534-4090-b80b-2703e1eb7f6c</UserSecretsId> + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> + </PropertyGroup> <ItemGroup> - <Content Include="..\.dockerignore"> - <Link>.dockerignore</Link> - </Content> + <Content Include="..\.dockerignore"> + <Link>.dockerignore</Link> + </Content> </ItemGroup> <ItemGroup> - <PackageReference Include="Bogus" Version="35.6.5" /> - <PackageReference Include="Bogus.Locations" Version="35.6.5" /> - <PackageReference Include="Fluid.Core" Version="3.0.0-beta.2" /> - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.0" /> - <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0"> - <PrivateAssets>all</PrivateAssets> - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> - </PackageReference> - <PackageReference Include="NetTopologySuite.IO.GeoJSON4STJ" Version="4.0.0" /> - <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" /> - <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="10.0.0" /> - <PackageReference Include="Serilog.AspNetCore" Version="10.0.0" /> + <PackageReference Include="Bogus" Version="35.6.5"/> + <PackageReference Include="Bogus.Locations" Version="35.6.5"/> + <PackageReference Include="Fluid.Core" Version="3.0.0-beta.2"/> + <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.0"/> + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.0"/> + <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0"> + <PrivateAssets>all</PrivateAssets> + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> + </PackageReference> + <PackageReference Include="NetTopologySuite.IO.GeoJSON4STJ" Version="4.0.0"/> + <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0"/> + <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="10.0.0"/> + <PackageReference Include="Serilog.AspNetCore" Version="10.0.0"/> </ItemGroup> <ItemGroup> - <Folder Include="files\" /> + <Folder Include="files\"/> </ItemGroup> <ItemGroup> - <None Remove="Templates\web_login.liquid" /> - <Resource Include="Templates\web_map.liquid"> - <CopyToOutputDirectory>Always</CopyToOutputDirectory> - </Resource> - <None Remove="Templates\web_upload.liquid" /> - <Resource Include="Templates\web_upload.liquid"> - <CopyToOutputDirectory>Always</CopyToOutputDirectory> - </Resource> + <None Remove="Templates\web_login.liquid"/> + <Resource Include="Templates\web_map.liquid"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Resource> + <None Remove="Templates\web_upload.liquid"/> + <Resource Include="Templates\web_upload.liquid"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Resource> </ItemGroup> </Project> |
