File tree Expand file tree Collapse file tree 3 files changed +6
-13
lines changed
src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal Expand file tree Collapse file tree 3 files changed +6
-13
lines changed Original file line number Diff line number Diff line change 22
22
<!-- Don't enforce prefixing local calls with this -->
23
23
<NoWarn >$(NoWarn);SA1101</NoWarn >
24
24
25
- <!-- Remove when fixed: https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/3687 -->
26
- <NoWarn >$(NoWarn);SA1010</NoWarn >
27
-
28
25
<AnalysisLevel >latest</AnalysisLevel >
29
26
<AnalysisMode >AllEnabledByDefault</AnalysisMode >
30
27
</PropertyGroup >
Original file line number Diff line number Diff line change 5
5
</PropertyGroup >
6
6
<PropertyGroup Condition =" !$(DefineConstants.Contains(EF_CORE_8))" >
7
7
<NetRuntime >9.0.0</NetRuntime >
8
- <NpgsqlVersion >9.0.1 </NpgsqlVersion >
8
+ <NpgsqlVersion >9.0.2 </NpgsqlVersion >
9
9
</PropertyGroup >
10
10
<ItemGroup >
11
11
<PackageVersion Include =" coverlet.collector" Version =" 6.0.2" />
24
24
<PackageVersion Include =" Microsoft.Extensions.Configuration.Json" Version =" 9.0.0" />
25
25
<PackageVersion Include =" Microsoft.NET.Test.Sdk" Version =" 17.12.0" />
26
26
<PackageVersion Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0" />
27
- <PackageVersion Include =" Nerdbank.GitVersioning" Version =" 3.6.146 " />
27
+ <PackageVersion Include =" Nerdbank.GitVersioning" Version =" 3.7.112 " />
28
28
<PackageVersion Include =" Npgsql.EntityFrameworkCore.PostgreSQL" Version =" $(NpgsqlVersion)" />
29
29
<PackageVersion Include =" SQLitePCLRaw.bundle_e_sqlite3" Version =" 2.1.10" />
30
30
<PackageVersion Include =" StyleCop.Analyzers" Version =" 1.2.0-beta.556" />
31
31
<PackageVersion Include =" xunit" Version =" 2.9.2" />
32
- <PackageVersion Include =" xunit.skippablefact" Version =" 1.4.13 " />
33
- <PackageVersion Include =" xunit.runner.visualstudio" Version =" 2.8.2 " />
32
+ <PackageVersion Include =" xunit.skippablefact" Version =" 1.5.23 " />
33
+ <PackageVersion Include =" xunit.runner.visualstudio" Version =" 3.0.0 " />
34
34
</ItemGroup >
35
35
</Project >
Original file line number Diff line number Diff line change @@ -35,12 +35,8 @@ public WindowFunctionsNpgsqlParameterBasedSqlProcessorFactory(RelationalParamete
35
35
#endif
36
36
37
37
#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 )
44
40
=> new WindowFunctionsNpgsqlParameterBasedSqlProcessor ( dependencies , parameters ) ;
45
41
#else
46
42
/// <inheritdoc/>
You can’t perform that action at this time.
0 commit comments