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.
22 lines
858 B
22 lines
858 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net5.0</TargetFramework> |
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.3" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.3"> |
|
<PrivateAssets>all</PrivateAssets> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
</PackageReference> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.3" /> |
|
<PackageReference Include="Refit" Version="6.0.1" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ErsatzTV.Core\ErsatzTV.Core.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|