diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index ee22ff741b0f..4ca52bd282c7 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -93,39 +93,39 @@
e2dad6af0f5a33cfbe6921a16224a9941197930d
-
+
https://github.com/dotnet/roslyn
- 6f815fb2aad6e56928d04322ad0e2d1b3c724b77
+ 50f7484dfbaeb162ae0cdb2905b204bafd2c6ba0
-
+
https://github.com/dotnet/roslyn
- 6f815fb2aad6e56928d04322ad0e2d1b3c724b77
+ 50f7484dfbaeb162ae0cdb2905b204bafd2c6ba0
-
+
https://github.com/dotnet/roslyn
- 6f815fb2aad6e56928d04322ad0e2d1b3c724b77
+ 50f7484dfbaeb162ae0cdb2905b204bafd2c6ba0
-
+
https://github.com/dotnet/roslyn
- 6f815fb2aad6e56928d04322ad0e2d1b3c724b77
+ 50f7484dfbaeb162ae0cdb2905b204bafd2c6ba0
-
+
https://github.com/dotnet/roslyn
- 6f815fb2aad6e56928d04322ad0e2d1b3c724b77
+ 50f7484dfbaeb162ae0cdb2905b204bafd2c6ba0
-
+
https://github.com/dotnet/roslyn
- 6f815fb2aad6e56928d04322ad0e2d1b3c724b77
+ 50f7484dfbaeb162ae0cdb2905b204bafd2c6ba0
-
+
https://github.com/dotnet/roslyn
- 6f815fb2aad6e56928d04322ad0e2d1b3c724b77
+ 50f7484dfbaeb162ae0cdb2905b204bafd2c6ba0
-
+
https://github.com/dotnet/roslyn
- 6f815fb2aad6e56928d04322ad0e2d1b3c724b77
+ 50f7484dfbaeb162ae0cdb2905b204bafd2c6ba0
https://github.com/dotnet/aspnetcore
diff --git a/eng/Versions.props b/eng/Versions.props
index a6030e648505..e2a3f08cf0d5 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -224,13 +224,13 @@
- 4.11.0-2.24264.12
- 4.11.0-2.24264.12
- 4.11.0-2.24264.12
- 4.11.0-2.24264.12
- 4.11.0-2.24264.12
- 4.11.0-2.24264.12
- 4.11.0-2.24264.12
+ 4.11.0-2.24266.4
+ 4.11.0-2.24266.4
+ 4.11.0-2.24266.4
+ 4.11.0-2.24266.4
+ 4.11.0-2.24266.4
+ 4.11.0-2.24266.4
+ 4.11.0-2.24266.4
diff --git a/src/RazorSdk/Tool/ConcurrentLruCache.cs b/src/RazorSdk/Tool/ConcurrentLruCache.cs
index c6d40a6f9eb3..06c575b5f0e4 100644
--- a/src/RazorSdk/Tool/ConcurrentLruCache.cs
+++ b/src/RazorSdk/Tool/ConcurrentLruCache.cs
@@ -113,7 +113,9 @@ internal IEnumerable> TestingEnumerable
foreach (var key in _nodeList)
{
var kvp = new KeyValuePair(key, _cache[key].Value);
+#pragma warning disable CS9237 // 'yield return' should not be used in the body of a lock statement
yield return kvp;
+#pragma warning restore CS9237
}
}
}