Add ability to switch database providers to MySQL or PostgreSQL

Ref #108
This commit is contained in:
Pat Hartl 2024-10-07 18:52:22 -05:00
parent a40de21fc7
commit e083d86d8b
6 changed files with 86 additions and 8 deletions

View file

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
</ItemGroup>
</Project>