mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
832 B
25 lines
832 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net7.0</TargetFramework> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<Nullable>enable</Nullable> |
|
<AnalysisLevel>latest-Recommended</AnalysisLevel> |
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Folder Include="Migrations\" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ErsatzTV.Core\ErsatzTV.Core.csproj" /> |
|
<ProjectReference Include="..\ErsatzTV.Infrastructure\ErsatzTV.Infrastructure.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.14" /> |
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|