mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-09-12 21:57:19 -04:00
Microsoft.EntityFrameworkCore.Sqlite 10.0.11 is the first 10.0.x servicing release to depend on SQLitePCLRaw 2.1.12, which drops the pre-3.50.2 SQLite build flagged by GHSA-2m69-gcr7-jv3q (CVE-2025-6965). DataLayer's Sqlite reference is where that chain enters the solution, so bumping it clears NU1903 from all 23 projects that transitively saw it. Co-authored-by: rmcrackan <rmcrackan@gmail.com>
35 lines
1.0 KiB
XML
35 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AudibleApi" Version="11.0.3.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.11" />
|
|
<PackageReference Include="NameParserSharp" Version="1.5.0" />
|
|
<PackageReference Include="Serilog.Exceptions" Version="8.4.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AaxDecrypter\AaxDecrypter.csproj" />
|
|
<ProjectReference Include="..\FileManager\FileManager.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Configuration.*.cs">
|
|
<DependentUpon>Configuration.cs</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|