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.
24 lines
1.0 KiB
24 lines
1.0 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net10.0</TargetFramework> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<Nullable>enable</Nullable> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ErsatzTV.Core\ErsatzTV.Core.csproj" /> |
|
<ProjectReference Include="..\ErsatzTV.Infrastructure\ErsatzTV.Infrastructure.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Dapper" Version="2.1.79" /> |
|
<PackageReference Include="EFCore.BulkExtensions.Sqlite" Version="[9.0.2,10)" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.9" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.15" /> |
|
<!-- Force fixed native SQLite to resolve NU1903 (GHSA-2m69-gcr7-jv3q) from the transitive 2.1.10 --> |
|
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.3" /> |
|
</ItemGroup> |
|
|
|
|
|
</Project>
|
|
|