Skip to content

Commit 67b6ea2

Browse files
committed
Upgrade to Npgsql Version
1 parent 0364938 commit 67b6ea2

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

Directory.Build.props

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
<!-- Don't enforce prefixing local calls with this -->
2323
<NoWarn>$(NoWarn);SA1101</NoWarn>
2424

25-
<!-- Remove when fixed: https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/3687 -->
26-
<NoWarn>$(NoWarn);SA1010</NoWarn>
27-
2825
<AnalysisLevel>latest</AnalysisLevel>
2926
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
3027
</PropertyGroup>

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66
<PropertyGroup Condition="!$(DefineConstants.Contains(EF_CORE_8))">
77
<NetRuntime>9.0.0</NetRuntime>
8-
<NpgsqlVersion>9.0.1</NpgsqlVersion>
8+
<NpgsqlVersion>9.0.2</NpgsqlVersion>
99
</PropertyGroup>
1010
<ItemGroup>
1111
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
@@ -29,7 +29,7 @@
2929
<PackageVersion Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.10" />
3030
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
3131
<PackageVersion Include="xunit" Version="2.9.2" />
32-
<PackageVersion Include="xunit.skippablefact" Version="1.4.13" />
32+
<PackageVersion Include="xunit.skippablefact" Version="1.5.23" />
3333
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
3434
</ItemGroup>
3535
</Project>

src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlParameterBasedSqlProcessorFactory.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,8 @@ public WindowFunctionsNpgsqlParameterBasedSqlProcessorFactory(RelationalParamete
3535
#endif
3636

3737
#if !EF_CORE_8
38-
/// <summary>
39-
/// This will be removed.
40-
/// </summary>
41-
/// <param name="parameters">Processor parameters.</param>
42-
/// <returns>This will be removed soon.</returns>
43-
public new RelationalParameterBasedSqlProcessor Create(RelationalParameterBasedSqlProcessorParameters parameters)
38+
/// <inheritdoc/>
39+
public override RelationalParameterBasedSqlProcessor Create(RelationalParameterBasedSqlProcessorParameters parameters)
4440
=> new WindowFunctionsNpgsqlParameterBasedSqlProcessor(dependencies, parameters);
4541
#else
4642
/// <inheritdoc/>

0 commit comments

Comments
 (0)