Posted 24 June 2026, 5:28 am EST
Just upgraded our app to .NET10 and found this warning for the project that has a package reference to “C1.Win.FlexReport” 10.0.20261.779:
Package 'SQLitePCLRaw.lib.e_sqlite3' 2.1.10 has a known high severity vulnerability, https://github.com/advisories/GHSA-2m69-gcr7-jv3q
This is a indirect dependency from “Microsoft.Data.Sqlite”, which you currently reference with version 9.0.5, but the warning appears also with recent 10.0.9.
Attached is a sample project:
FlexReportNet10.zip
Seems this is nothing that you can fix, Microsoft would first have to release a new “Microsoft.Data.Sqlite”: https://github.com/dotnet/efcore/issues/38257
The developers probably noticed it already, and it was probably also reported by other customers, but I don’t see forum posts about this.
Workaround: add this to the csproj file that references “C1.Win.FlexReport”:
<ItemGroup>
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-2m69-gcr7-jv3q" />
</ItemGroup>
Or better (in a multi project solution) add a file “Directory.Build.props” to the solution root directory with this content:
<Project>
<ItemGroup>
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-2m69-gcr7-jv3q" />
</ItemGroup>
</Project>
If Microsoft releases an update to “Microsoft.Data.Sqlite”, I assume you have to update your own package reference to the fix version.
Best regards
Wolfgang

