diff --git a/Thinktecture.EntityFrameworkCore.sln.DotSettings b/Thinktecture.EntityFrameworkCore.sln.DotSettings
index 8071bca..7506e0b 100644
--- a/Thinktecture.EntityFrameworkCore.sln.DotSettings
+++ b/Thinktecture.EntityFrameworkCore.sln.DotSettings
@@ -387,6 +387,9 @@
<Policy Inspect="True" Prefix="" Suffix="" Style="AaBb"><ExtraRule Prefix="" Suffix="Async" Style="AaBb" /></Policy>
<Policy Inspect="True" Prefix="_" Suffix="" Style="AA_BB" />
<Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" />
+ <Policy><Descriptor Staticness="Static" AccessRightKinds="Private" Description="Static readonly fields (private)"><ElementKinds><Kind Name="READONLY_FIELD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" /></Policy>
+ <Policy><Descriptor Staticness="Any" AccessRightKinds="Private" Description="Constant fields (private)"><ElementKinds><Kind Name="CONSTANT_FIELD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="_" Suffix="" Style="AA_BB" /></Policy>
+ <Policy><Descriptor Staticness="Any" AccessRightKinds="Protected, ProtectedInternal, Internal, Public, PrivateProtected" Description="Constant fields (not private)"><ElementKinds><Kind Name="CONSTANT_FIELD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /></Policy>
<Policy><Descriptor Staticness="Static, Instance" AccessRightKinds="Private, Protected, ProtectedInternal, Internal, Public" Description="Async Methods"><ElementKinds><Kind Name="ASYNC_METHOD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="Async" Style="AaBb" /></Policy>
Narrow
TEMP_FOLDER
@@ -433,6 +436,7 @@
True
True
True
+ True
True
True
True
diff --git a/tests/Thinktecture.EntityFrameworkCore.SqlServer.Tests/SqlServerContainerFixture.cs b/tests/Thinktecture.EntityFrameworkCore.SqlServer.Tests/SqlServerContainerFixture.cs
index 0467517..95f019d 100644
--- a/tests/Thinktecture.EntityFrameworkCore.SqlServer.Tests/SqlServerContainerFixture.cs
+++ b/tests/Thinktecture.EntityFrameworkCore.SqlServer.Tests/SqlServerContainerFixture.cs
@@ -17,7 +17,7 @@ public SqlServerContainerFixture()
private static MsSqlContainer BuildContainer()
{
return new MsSqlBuilder()
- .WithImage("mcr.microsoft.com/mssql/server:2022-latest")
+ .WithImage("mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04")
.WithPassword($"P@sswo0d01_{Guid.NewGuid()}")
.WithCleanUp(true)
.Build();