* The provided SQLite3 database contains the required schemas, but no data and can be reset to if required. * Remove all references to PostgreSQL in documentation and configuration. * Replace native sqlite3 command with a console app to remove dependency on SQLite3 installation.
17 lines
627 B
XML
17 lines
627 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.24" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.13" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.13" />
|
|
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="9.10.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|