Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@
</PackageReference>

<!-- Meziantou - Comprehensive code quality -->
<PackageReference Include="Meziantou.Analyzer" Version="3.0.122">
<PackageReference Include="Meziantou.Analyzer" Version="3.0.141">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

<!-- SonarAnalyzer - Industry-standard analysis -->
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.29.0.143774">
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.31.0.145097">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down Expand Up @@ -104,7 +104,7 @@
<ItemGroup>
<!-- SourceLink: embed source provenance into PDBs so debuggers can step
into NuGet package code from GitHub. -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.300">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.301">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.6.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.10" />
</ItemGroup>

<!-- Analyzer PackageReferences are centralized in Directory.Build.props -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
<ProjectReference Include="..\Wolfgang.Extensions.Logging.Data\Wolfgang.Extensions.Logging.Data.csproj" />
<PackageReference Include="EntityFramework" Version="6.5.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.10" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.10" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@

<ItemGroup>
<ProjectReference Include="..\..\src\Wolfgang.Extensions.Logging.Data\Wolfgang.Extensions.Logging.Data.csproj" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.10" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.6.0" />

<!-- Referenced so the types the doc examples use are on the compile reference
set (via TRUSTED_PLATFORM_ASSEMBLIES): the package itself, the logging
abstractions, and SqlConnection (used by the LogDbConnection examples). -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.9" />
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.10" />
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />

<!-- Real Microsoft.Extensions.Logging pipeline, not just Abstractions. -->
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.10" />

<!-- Real DbConnection implementation for integration coverage. SQLite is
lightweight, in-process, and works across every TFM the integration
project targets, so the test doesn't need any external infrastructure. -->
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.9" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.10" />
<!-- Override the transitive SQLitePCLRaw chain. Microsoft.Data.Sqlite 10.0.9
pins 2.1.11, which carries GHSA-2m69-gcr7-jv3q with no patched 2.1.x
release. 3.0.x (bundle) / 3.50.x (native lib) is outside the advisory's affected range (<= 2.1.11)
and is API-compatible with Microsoft.Data.Sqlite's provider contract. -->
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.3" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading