From e46205de05505565ad7f73f3fe39cfa64cf2ba9e Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 11 Dec 2025 22:57:40 +0000
Subject: [PATCH 01/37] Initial plan
From dcbae2b160811d1bd551162cd5fefb3bc9053fee Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 11 Dec 2025 23:13:37 +0000
Subject: [PATCH 02/37] Add missing Reference elements to csproj files
Added Microsoft.AspNetCore.Http.Abstractions, Microsoft.AspNetCore.Http.Features, Microsoft.Extensions.Features, and Microsoft.AspNetCore.Hosting.Server.Abstractions references to projects that need them after dependency updates.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../src/Microsoft.AspNetCore.Hosting.Abstractions.csproj | 1 +
src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj | 3 ++-
.../src/Microsoft.AspNetCore.Authentication.Core.csproj | 1 +
.../Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj | 1 +
src/Http/Http/src/Microsoft.AspNetCore.Http.csproj | 1 +
src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj | 1 +
.../Microsoft.AspNetCore.Routing.Microbenchmarks.csproj | 1 +
src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj | 1 +
.../Diagnostics/src/Microsoft.AspNetCore.Diagnostics.csproj | 3 +++
.../src/Microsoft.AspNetCore.HostFiltering.csproj | 3 ++-
.../src/Microsoft.AspNetCore.HttpOverrides.csproj | 2 ++
.../src/Microsoft.AspNetCore.OutputCaching.csproj | 3 ++-
.../StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj | 1 +
.../src/Microsoft.AspNetCore.Mvc.Abstractions.csproj | 1 +
.../Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj | 2 ++
.../Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj | 1 +
16 files changed, 23 insertions(+), 3 deletions(-)
diff --git a/src/Hosting/Abstractions/src/Microsoft.AspNetCore.Hosting.Abstractions.csproj b/src/Hosting/Abstractions/src/Microsoft.AspNetCore.Hosting.Abstractions.csproj
index ed3426d65288..9f0bf4a2730d 100644
--- a/src/Hosting/Abstractions/src/Microsoft.AspNetCore.Hosting.Abstractions.csproj
+++ b/src/Hosting/Abstractions/src/Microsoft.AspNetCore.Hosting.Abstractions.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj b/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj
index eb2052e0b5e7..f41c587c001c 100644
--- a/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj
+++ b/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj
@@ -25,8 +25,9 @@
-
+
+
diff --git a/src/Http/Authentication.Core/src/Microsoft.AspNetCore.Authentication.Core.csproj b/src/Http/Authentication.Core/src/Microsoft.AspNetCore.Authentication.Core.csproj
index 61b6d3a8f71e..4ea6605c7a90 100644
--- a/src/Http/Authentication.Core/src/Microsoft.AspNetCore.Authentication.Core.csproj
+++ b/src/Http/Authentication.Core/src/Microsoft.AspNetCore.Authentication.Core.csproj
@@ -17,6 +17,7 @@
+
diff --git a/src/Http/Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj b/src/Http/Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj
index ea792b089048..44035c271cdc 100644
--- a/src/Http/Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj
+++ b/src/Http/Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj
@@ -26,6 +26,7 @@
+
diff --git a/src/Http/Http/src/Microsoft.AspNetCore.Http.csproj b/src/Http/Http/src/Microsoft.AspNetCore.Http.csproj
index 4e7148141a51..a28c02a2be02 100644
--- a/src/Http/Http/src/Microsoft.AspNetCore.Http.csproj
+++ b/src/Http/Http/src/Microsoft.AspNetCore.Http.csproj
@@ -31,6 +31,7 @@
+
diff --git a/src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj b/src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj
index bf57086595bb..61b519d81174 100644
--- a/src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj
+++ b/src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj
@@ -11,6 +11,7 @@
+
diff --git a/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj b/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj
index 200dc147c051..2a46da091cba 100644
--- a/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj
+++ b/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj
@@ -41,6 +41,7 @@
+
diff --git a/src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj b/src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj
index 492d68637faa..914c0cbf64be 100644
--- a/src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj
+++ b/src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj
@@ -14,6 +14,7 @@ Microsoft.AspNetCore.Cors.EnableCorsAttribute
+
diff --git a/src/Middleware/Diagnostics/src/Microsoft.AspNetCore.Diagnostics.csproj b/src/Middleware/Diagnostics/src/Microsoft.AspNetCore.Diagnostics.csproj
index 8671a3b03fb4..2b2256524873 100644
--- a/src/Middleware/Diagnostics/src/Microsoft.AspNetCore.Diagnostics.csproj
+++ b/src/Middleware/Diagnostics/src/Microsoft.AspNetCore.Diagnostics.csproj
@@ -21,9 +21,12 @@
+
+
+
diff --git a/src/Middleware/HostFiltering/src/Microsoft.AspNetCore.HostFiltering.csproj b/src/Middleware/HostFiltering/src/Microsoft.AspNetCore.HostFiltering.csproj
index e7d7e4cd8e9c..52556a3b15ec 100644
--- a/src/Middleware/HostFiltering/src/Microsoft.AspNetCore.HostFiltering.csproj
+++ b/src/Middleware/HostFiltering/src/Microsoft.AspNetCore.HostFiltering.csproj
@@ -13,10 +13,11 @@
+
+
-
diff --git a/src/Middleware/HttpOverrides/src/Microsoft.AspNetCore.HttpOverrides.csproj b/src/Middleware/HttpOverrides/src/Microsoft.AspNetCore.HttpOverrides.csproj
index 15e0c1a903cb..8e4bc6830273 100644
--- a/src/Middleware/HttpOverrides/src/Microsoft.AspNetCore.HttpOverrides.csproj
+++ b/src/Middleware/HttpOverrides/src/Microsoft.AspNetCore.HttpOverrides.csproj
@@ -13,7 +13,9 @@
+
+
diff --git a/src/Middleware/OutputCaching/src/Microsoft.AspNetCore.OutputCaching.csproj b/src/Middleware/OutputCaching/src/Microsoft.AspNetCore.OutputCaching.csproj
index 55cc936fec7b..aaee00a45b6e 100644
--- a/src/Middleware/OutputCaching/src/Microsoft.AspNetCore.OutputCaching.csproj
+++ b/src/Middleware/OutputCaching/src/Microsoft.AspNetCore.OutputCaching.csproj
@@ -15,8 +15,9 @@
-
+
+
diff --git a/src/Middleware/StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj b/src/Middleware/StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj
index 2166cc8ef709..6ef09230d78c 100644
--- a/src/Middleware/StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj
+++ b/src/Middleware/StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj
@@ -16,6 +16,7 @@
+
diff --git a/src/Mvc/Mvc.Abstractions/src/Microsoft.AspNetCore.Mvc.Abstractions.csproj b/src/Mvc/Mvc.Abstractions/src/Microsoft.AspNetCore.Mvc.Abstractions.csproj
index 16a5411f1caf..3b160f09e239 100644
--- a/src/Mvc/Mvc.Abstractions/src/Microsoft.AspNetCore.Mvc.Abstractions.csproj
+++ b/src/Mvc/Mvc.Abstractions/src/Microsoft.AspNetCore.Mvc.Abstractions.csproj
@@ -28,6 +28,7 @@ Microsoft.AspNetCore.Mvc.IActionResult
+
diff --git a/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj b/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj
index c35c22dd8d94..8cd2ea0e3f76 100644
--- a/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj
+++ b/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj
@@ -42,7 +42,9 @@
+
+
diff --git a/src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj b/src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj
index 0b27e701b2ce..b7eabdc8d95a 100644
--- a/src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj
+++ b/src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj
@@ -32,6 +32,7 @@
+
From 53da7b4734f9f37bccb36a953a6d67ffd1dd0fad Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 11 Dec 2025 23:15:46 +0000
Subject: [PATCH 03/37] Add more missing Reference elements
Added references to Microsoft.AspNetCore.Authentication.csproj and Microsoft.AspNetCore.Server.IISIntegration.csproj
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../Core/src/Microsoft.AspNetCore.Authentication.csproj | 2 ++
.../src/Microsoft.AspNetCore.Server.IISIntegration.csproj | 3 ++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj b/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj
index 32546d575cb1..e9f608737fca 100644
--- a/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj
+++ b/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj
@@ -18,7 +18,9 @@
+
+
diff --git a/src/Servers/IIS/IISIntegration/src/Microsoft.AspNetCore.Server.IISIntegration.csproj b/src/Servers/IIS/IISIntegration/src/Microsoft.AspNetCore.Server.IISIntegration.csproj
index bd96061e6291..c72b4bb2b65b 100644
--- a/src/Servers/IIS/IISIntegration/src/Microsoft.AspNetCore.Server.IISIntegration.csproj
+++ b/src/Servers/IIS/IISIntegration/src/Microsoft.AspNetCore.Server.IISIntegration.csproj
@@ -18,8 +18,9 @@
-
+
+
From 79e31b398f98c1502bb8bc8d0c9c6ee9f23507e4 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 11 Dec 2025 23:17:49 +0000
Subject: [PATCH 04/37] Add Microsoft.AspNetCore.Http.Abstractions to
middleware and MVC projects
Added references to multiple middleware projects (CookiePolicy, RequestDecompression, HeaderPropagation, HttpsPolicy, WebSockets, ResponseCaching, ResponseCompression), MVC.Core, and SignalR Http.Connections.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../src/Microsoft.AspNetCore.HeaderPropagation.csproj | 1 +
.../HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj | 3 ++-
.../src/Microsoft.AspNetCore.RequestDecompression.csproj | 1 +
.../src/Microsoft.AspNetCore.ResponseCaching.csproj | 5 +++--
.../src/Microsoft.AspNetCore.ResponseCompression.csproj | 1 +
.../WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj | 1 +
src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj | 1 +
.../src/Microsoft.AspNetCore.CookiePolicy.csproj | 1 +
.../src/Microsoft.AspNetCore.Http.Connections.csproj | 3 ++-
9 files changed, 13 insertions(+), 4 deletions(-)
diff --git a/src/Middleware/HeaderPropagation/src/Microsoft.AspNetCore.HeaderPropagation.csproj b/src/Middleware/HeaderPropagation/src/Microsoft.AspNetCore.HeaderPropagation.csproj
index 10e0fc033379..6edd63c282ed 100644
--- a/src/Middleware/HeaderPropagation/src/Microsoft.AspNetCore.HeaderPropagation.csproj
+++ b/src/Middleware/HeaderPropagation/src/Microsoft.AspNetCore.HeaderPropagation.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj b/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj
index 2722a69c9d5b..f754dae26103 100644
--- a/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj
+++ b/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj
@@ -13,10 +13,11 @@
+
+
-
diff --git a/src/Middleware/RequestDecompression/src/Microsoft.AspNetCore.RequestDecompression.csproj b/src/Middleware/RequestDecompression/src/Microsoft.AspNetCore.RequestDecompression.csproj
index 7197542caaf1..97140d134369 100644
--- a/src/Middleware/RequestDecompression/src/Microsoft.AspNetCore.RequestDecompression.csproj
+++ b/src/Middleware/RequestDecompression/src/Microsoft.AspNetCore.RequestDecompression.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/Middleware/ResponseCaching/src/Microsoft.AspNetCore.ResponseCaching.csproj b/src/Middleware/ResponseCaching/src/Microsoft.AspNetCore.ResponseCaching.csproj
index 98db7efc6f58..8b07c576105e 100644
--- a/src/Middleware/ResponseCaching/src/Microsoft.AspNetCore.ResponseCaching.csproj
+++ b/src/Middleware/ResponseCaching/src/Microsoft.AspNetCore.ResponseCaching.csproj
@@ -12,9 +12,10 @@
-
-
+
+
+
diff --git a/src/Middleware/ResponseCompression/src/Microsoft.AspNetCore.ResponseCompression.csproj b/src/Middleware/ResponseCompression/src/Microsoft.AspNetCore.ResponseCompression.csproj
index 2df32fa07f2e..a27b30598f13 100644
--- a/src/Middleware/ResponseCompression/src/Microsoft.AspNetCore.ResponseCompression.csproj
+++ b/src/Middleware/ResponseCompression/src/Microsoft.AspNetCore.ResponseCompression.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/Middleware/WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj b/src/Middleware/WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj
index d27fdfb88622..d8e938bdc45f 100644
--- a/src/Middleware/WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj
+++ b/src/Middleware/WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj
@@ -13,6 +13,7 @@
+
diff --git a/src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj b/src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj
index fa00f51a8fe1..e8dac192c9d2 100644
--- a/src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj
+++ b/src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj
@@ -53,6 +53,7 @@ Microsoft.AspNetCore.Mvc.RouteAttribute
+
diff --git a/src/Security/CookiePolicy/src/Microsoft.AspNetCore.CookiePolicy.csproj b/src/Security/CookiePolicy/src/Microsoft.AspNetCore.CookiePolicy.csproj
index aab3dc37f5f2..cd0f9002a97d 100644
--- a/src/Security/CookiePolicy/src/Microsoft.AspNetCore.CookiePolicy.csproj
+++ b/src/Security/CookiePolicy/src/Microsoft.AspNetCore.CookiePolicy.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj b/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
index 6449f8900b1f..79804215846a 100644
--- a/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
+++ b/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
@@ -34,8 +34,9 @@
-
+
+
From 3c371553bd48c46d1d8a070bf9ab4ad85e9e3ca1 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 11 Dec 2025 23:20:13 +0000
Subject: [PATCH 05/37] Add Http.Features and Routing.Abstractions references
Added Microsoft.AspNetCore.Http.Features to CORS and Http.Results, and Microsoft.AspNetCore.Routing.Abstractions to Http.Results to resolve LinkGenerator type issues.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj | 2 ++
src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj | 1 +
2 files changed, 3 insertions(+)
diff --git a/src/Http/Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj b/src/Http/Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj
index 44035c271cdc..d8606a371a2e 100644
--- a/src/Http/Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj
+++ b/src/Http/Http.Results/src/Microsoft.AspNetCore.Http.Results.csproj
@@ -28,7 +28,9 @@
+
+
diff --git a/src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj b/src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj
index 914c0cbf64be..50b0ee295095 100644
--- a/src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj
+++ b/src/Middleware/CORS/src/Microsoft.AspNetCore.Cors.csproj
@@ -16,6 +16,7 @@ Microsoft.AspNetCore.Cors.EnableCorsAttribute
+
From cfe3ee1009ecf86d7e60439d99ea5050ebeda405 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 11 Dec 2025 23:45:06 +0000
Subject: [PATCH 06/37] Add missing references to Rewrite, StaticFiles,
HealthChecks, Authorization.Policy, ResponseCompression, and IISIntegration
Added Microsoft.AspNetCore.Http.Abstractions, Microsoft.AspNetCore.Http.Features, and Microsoft.AspNetCore.Authentication.Abstractions to projects that were missing them after dependency updates.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../src/Microsoft.AspNetCore.Diagnostics.HealthChecks.csproj | 1 +
.../src/Microsoft.AspNetCore.ResponseCompression.csproj | 1 +
.../Rewrite/src/Microsoft.AspNetCore.Rewrite.csproj | 4 +++-
.../StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj | 1 +
.../src/Microsoft.AspNetCore.Authorization.Policy.csproj | 1 +
.../src/Microsoft.AspNetCore.Server.IISIntegration.csproj | 2 ++
6 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/src/Middleware/HealthChecks/src/Microsoft.AspNetCore.Diagnostics.HealthChecks.csproj b/src/Middleware/HealthChecks/src/Microsoft.AspNetCore.Diagnostics.HealthChecks.csproj
index 8a6aebd55d40..53ec7b2fd670 100644
--- a/src/Middleware/HealthChecks/src/Microsoft.AspNetCore.Diagnostics.HealthChecks.csproj
+++ b/src/Middleware/HealthChecks/src/Microsoft.AspNetCore.Diagnostics.HealthChecks.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/Middleware/ResponseCompression/src/Microsoft.AspNetCore.ResponseCompression.csproj b/src/Middleware/ResponseCompression/src/Microsoft.AspNetCore.ResponseCompression.csproj
index a27b30598f13..3f1304cd1678 100644
--- a/src/Middleware/ResponseCompression/src/Microsoft.AspNetCore.ResponseCompression.csproj
+++ b/src/Middleware/ResponseCompression/src/Microsoft.AspNetCore.ResponseCompression.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/Middleware/Rewrite/src/Microsoft.AspNetCore.Rewrite.csproj b/src/Middleware/Rewrite/src/Microsoft.AspNetCore.Rewrite.csproj
index b309cf77a057..a2b50c5f8ea3 100644
--- a/src/Middleware/Rewrite/src/Microsoft.AspNetCore.Rewrite.csproj
+++ b/src/Middleware/Rewrite/src/Microsoft.AspNetCore.Rewrite.csproj
@@ -15,12 +15,14 @@
+
+
+
-
diff --git a/src/Middleware/StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj b/src/Middleware/StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj
index 6ef09230d78c..771cb4d58af2 100644
--- a/src/Middleware/StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj
+++ b/src/Middleware/StaticFiles/src/Microsoft.AspNetCore.StaticFiles.csproj
@@ -18,6 +18,7 @@
+
diff --git a/src/Security/Authorization/Policy/src/Microsoft.AspNetCore.Authorization.Policy.csproj b/src/Security/Authorization/Policy/src/Microsoft.AspNetCore.Authorization.Policy.csproj
index 14912c54a988..6e437ce8d9d2 100644
--- a/src/Security/Authorization/Policy/src/Microsoft.AspNetCore.Authorization.Policy.csproj
+++ b/src/Security/Authorization/Policy/src/Microsoft.AspNetCore.Authorization.Policy.csproj
@@ -19,6 +19,7 @@
+
diff --git a/src/Servers/IIS/IISIntegration/src/Microsoft.AspNetCore.Server.IISIntegration.csproj b/src/Servers/IIS/IISIntegration/src/Microsoft.AspNetCore.Server.IISIntegration.csproj
index c72b4bb2b65b..21c32002151e 100644
--- a/src/Servers/IIS/IISIntegration/src/Microsoft.AspNetCore.Server.IISIntegration.csproj
+++ b/src/Servers/IIS/IISIntegration/src/Microsoft.AspNetCore.Server.IISIntegration.csproj
@@ -15,12 +15,14 @@
+
+
From d41c4454c6e3f06b9ba08df1b9baef58c325413b Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 11 Dec 2025 23:47:29 +0000
Subject: [PATCH 07/37] Add missing references to ResponseCaching and
SignalR.Core
Added Microsoft.AspNetCore.Http.Features to ResponseCaching and Microsoft.AspNetCore.Http.Abstractions to SignalR.Core.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../src/Microsoft.AspNetCore.ResponseCaching.csproj | 1 +
.../server/Core/src/Microsoft.AspNetCore.SignalR.Core.csproj | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/Middleware/ResponseCaching/src/Microsoft.AspNetCore.ResponseCaching.csproj b/src/Middleware/ResponseCaching/src/Microsoft.AspNetCore.ResponseCaching.csproj
index 8b07c576105e..8c2b8374eb1c 100644
--- a/src/Middleware/ResponseCaching/src/Microsoft.AspNetCore.ResponseCaching.csproj
+++ b/src/Middleware/ResponseCaching/src/Microsoft.AspNetCore.ResponseCaching.csproj
@@ -15,6 +15,7 @@
+
diff --git a/src/SignalR/server/Core/src/Microsoft.AspNetCore.SignalR.Core.csproj b/src/SignalR/server/Core/src/Microsoft.AspNetCore.SignalR.Core.csproj
index f5016566f977..0f01a615142d 100644
--- a/src/SignalR/server/Core/src/Microsoft.AspNetCore.SignalR.Core.csproj
+++ b/src/SignalR/server/Core/src/Microsoft.AspNetCore.SignalR.Core.csproj
@@ -26,6 +26,7 @@
+
From 7949f0ecb64df426646b9da877ff4c40483750a8 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 11 Dec 2025 23:49:31 +0000
Subject: [PATCH 08/37] Fix Authentication.Core self-reference
Changed Microsoft.AspNetCore.Authentication.Core to correctly reference Microsoft.AspNetCore.Authentication.Abstractions instead of itself.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../Core/src/Microsoft.AspNetCore.Authentication.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj b/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj
index e9f608737fca..0e3e781345ce 100644
--- a/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj
+++ b/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj
@@ -15,7 +15,7 @@
-
+
From 496f5c69b36a27cb52f3d5dde16f8a5bf2cf3fa3 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 11 Dec 2025 23:51:35 +0000
Subject: [PATCH 09/37] Add missing references to Kestrel.Core and Hosting
Added Microsoft.AspNetCore.Http.Abstractions to Kestrel.Core and Microsoft.AspNetCore.Http.Features to Hosting.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj | 1 +
.../Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj b/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj
index f41c587c001c..65252ca95222 100644
--- a/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj
+++ b/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj
@@ -28,6 +28,7 @@
+
diff --git a/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj b/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj
index 8cd2ea0e3f76..9ca9d863a5cc 100644
--- a/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj
+++ b/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj
@@ -44,6 +44,7 @@
+
From 6fb9b07f592388016a9adb44dd63ae270e2b82b2 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 00:07:49 +0000
Subject: [PATCH 10/37] Add missing references to CookiePolicy, HostFiltering,
WebSockets, HttpsPolicy, and OutputCaching
Added Microsoft.AspNetCore.Http.Features to CookiePolicy, HostFiltering, WebSockets, and OutputCaching. Added Microsoft.AspNetCore.Hosting.Server.Abstractions to HttpsPolicy.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../HostFiltering/src/Microsoft.AspNetCore.HostFiltering.csproj | 1 +
.../HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj | 1 +
.../OutputCaching/src/Microsoft.AspNetCore.OutputCaching.csproj | 1 +
.../WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj | 1 +
.../CookiePolicy/src/Microsoft.AspNetCore.CookiePolicy.csproj | 1 +
5 files changed, 5 insertions(+)
diff --git a/src/Middleware/HostFiltering/src/Microsoft.AspNetCore.HostFiltering.csproj b/src/Middleware/HostFiltering/src/Microsoft.AspNetCore.HostFiltering.csproj
index 52556a3b15ec..5e829e3aa2a4 100644
--- a/src/Middleware/HostFiltering/src/Microsoft.AspNetCore.HostFiltering.csproj
+++ b/src/Middleware/HostFiltering/src/Microsoft.AspNetCore.HostFiltering.csproj
@@ -17,6 +17,7 @@
+
diff --git a/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj b/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj
index f754dae26103..6491b37b1239 100644
--- a/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj
+++ b/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/Middleware/OutputCaching/src/Microsoft.AspNetCore.OutputCaching.csproj b/src/Middleware/OutputCaching/src/Microsoft.AspNetCore.OutputCaching.csproj
index aaee00a45b6e..ae669dfabc86 100644
--- a/src/Middleware/OutputCaching/src/Microsoft.AspNetCore.OutputCaching.csproj
+++ b/src/Middleware/OutputCaching/src/Microsoft.AspNetCore.OutputCaching.csproj
@@ -18,6 +18,7 @@
+
diff --git a/src/Middleware/WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj b/src/Middleware/WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj
index d8e938bdc45f..25b52527a08f 100644
--- a/src/Middleware/WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj
+++ b/src/Middleware/WebSockets/src/Microsoft.AspNetCore.WebSockets.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/Security/CookiePolicy/src/Microsoft.AspNetCore.CookiePolicy.csproj b/src/Security/CookiePolicy/src/Microsoft.AspNetCore.CookiePolicy.csproj
index cd0f9002a97d..c293738b2de0 100644
--- a/src/Security/CookiePolicy/src/Microsoft.AspNetCore.CookiePolicy.csproj
+++ b/src/Security/CookiePolicy/src/Microsoft.AspNetCore.CookiePolicy.csproj
@@ -13,6 +13,7 @@
+
From 1775b480fe7285d59caf724f1023ab49bae350cf Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 00:11:14 +0000
Subject: [PATCH 11/37] Add missing references to Kestrel.Transport.Quic,
Hosting, Authentication, and Http.Connections
Added Microsoft.AspNetCore.Http.Features to Kestrel.Transport.Quic, Microsoft.AspNetCore.Hosting.Server.Abstractions to Hosting, Microsoft.AspNetCore.Authentication.Core to Authentication, and Microsoft.AspNetCore.Authentication.Abstractions to Http.Connections.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj | 1 +
.../Core/src/Microsoft.AspNetCore.Authentication.csproj | 1 +
.../Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj | 1 +
.../src/Microsoft.AspNetCore.Http.Connections.csproj | 1 +
4 files changed, 4 insertions(+)
diff --git a/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj b/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj
index 65252ca95222..6b4a9a2fa1ac 100644
--- a/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj
+++ b/src/Hosting/Hosting/src/Microsoft.AspNetCore.Hosting.csproj
@@ -25,6 +25,7 @@
+
diff --git a/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj b/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj
index 0e3e781345ce..033969615f1b 100644
--- a/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj
+++ b/src/Security/Authentication/Core/src/Microsoft.AspNetCore.Authentication.csproj
@@ -16,6 +16,7 @@
+
diff --git a/src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj b/src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj
index b7eabdc8d95a..58d1e04125cf 100644
--- a/src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj
+++ b/src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj
@@ -34,6 +34,7 @@
+
diff --git a/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj b/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
index 79804215846a..62d4438312d7 100644
--- a/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
+++ b/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
@@ -32,6 +32,7 @@
+
From 8b05beaf499bac4ff58ca2dfd1931d4cc8a59a52 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 00:27:06 +0000
Subject: [PATCH 12/37] Add missing references to HttpSys and Kestrel
Added Microsoft.AspNetCore.Hosting.Server.Abstractions and Microsoft.AspNetCore.Http.Features to HttpSys. Added Microsoft.AspNetCore.Hosting.Abstractions to Kestrel.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj | 2 ++
.../Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj | 1 +
2 files changed, 3 insertions(+)
diff --git a/src/Servers/HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj b/src/Servers/HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj
index 868990b89816..d0b15512f46f 100644
--- a/src/Servers/HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj
+++ b/src/Servers/HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj
@@ -42,6 +42,8 @@
+
+
all
diff --git a/src/Servers/Kestrel/Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj b/src/Servers/Kestrel/Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj
index cc61f6a7f5db..102606b525a3 100644
--- a/src/Servers/Kestrel/Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj
+++ b/src/Servers/Kestrel/Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj
@@ -12,6 +12,7 @@
+
From d0de1adb7c152ef130f5ea0add73a5e1853041ca Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 00:29:24 +0000
Subject: [PATCH 13/37] Add missing references to TestHost and HttpSys
Added Microsoft.AspNetCore.Hosting.Abstractions, Hosting.Server.Abstractions, Http.Abstractions, and Http.Features to TestHost. Added Authentication.Abstractions, Hosting.Abstractions, Http.Abstractions, and WebUtilities to HttpSys.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj | 4 ++++
.../HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj b/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj
index 3dc6a0dbecb3..ee8269f69090 100644
--- a/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj
+++ b/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj
@@ -10,6 +10,10 @@
+
+
+
+
diff --git a/src/Servers/HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj b/src/Servers/HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj
index d0b15512f46f..a9527744ca2a 100644
--- a/src/Servers/HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj
+++ b/src/Servers/HttpSys/src/Microsoft.AspNetCore.Server.HttpSys.csproj
@@ -39,11 +39,15 @@
+
+
+
+
all
From 38d0a171681bf55dfd215a83984a09318ebe5de8 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 00:31:29 +0000
Subject: [PATCH 14/37] Add missing references to IIS
Added Microsoft.AspNetCore.Authentication.Abstractions, Hosting.Server.Abstractions, and Http.Abstractions to IIS.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj b/src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj
index a456190bc234..9d1e2bd3ebfc 100644
--- a/src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj
+++ b/src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj
@@ -55,9 +55,12 @@
+
+
+
From b038355af3f424ec581776e41f30ebe9bb07c403 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 00:46:07 +0000
Subject: [PATCH 15/37] Add missing references to StaticAssets, Kestrel, and
Mvc.Abstractions
Added Http.Abstractions, Http.Features, Routing.Abstractions, and Net.Http.Headers to StaticAssets. Added Hosting.Server.Abstractions to Kestrel. Added Http.Features to Mvc.Abstractions.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../src/Microsoft.AspNetCore.Mvc.Abstractions.csproj | 1 +
.../Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj | 1 +
.../src/Microsoft.AspNetCore.StaticAssets.csproj | 6 +++++-
3 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/Mvc/Mvc.Abstractions/src/Microsoft.AspNetCore.Mvc.Abstractions.csproj b/src/Mvc/Mvc.Abstractions/src/Microsoft.AspNetCore.Mvc.Abstractions.csproj
index 3b160f09e239..54853509562a 100644
--- a/src/Mvc/Mvc.Abstractions/src/Microsoft.AspNetCore.Mvc.Abstractions.csproj
+++ b/src/Mvc/Mvc.Abstractions/src/Microsoft.AspNetCore.Mvc.Abstractions.csproj
@@ -29,6 +29,7 @@ Microsoft.AspNetCore.Mvc.IActionResult
+
diff --git a/src/Servers/Kestrel/Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj b/src/Servers/Kestrel/Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj
index 102606b525a3..4f85a160dd8b 100644
--- a/src/Servers/Kestrel/Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj
+++ b/src/Servers/Kestrel/Kestrel/src/Microsoft.AspNetCore.Server.Kestrel.csproj
@@ -13,6 +13,7 @@
+
diff --git a/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj b/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj
index c5a47fce08f1..b934b594a702 100644
--- a/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj
+++ b/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj
@@ -16,9 +16,13 @@
+
+
+
+
-
+
From 91bf2be7bd863845b8badaed06a2eb9565ab2c2f Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 00:46:54 +0000
Subject: [PATCH 16/37] Add missing reference to IIS
Added Microsoft.AspNetCore.Http to IIS for IHttpActivityFeature.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj b/src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj
index 9d1e2bd3ebfc..c54a34640b30 100644
--- a/src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj
+++ b/src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj
@@ -60,6 +60,7 @@
+
From 7a6a41a56cb3f47ae9fa1f84c53a0874953d3030 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 01:05:07 +0000
Subject: [PATCH 17/37] Add missing references to Mvc.Core and DefaultBuilder
Added Http.Features and Authentication.Abstractions to Mvc.Core. Added Hosting.Abstractions, Http.Abstractions, and Routing.Abstractions to DefaultBuilder (Microsoft.AspNetCore).
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
src/DefaultBuilder/src/Microsoft.AspNetCore.csproj | 3 +++
src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj | 2 ++
2 files changed, 5 insertions(+)
diff --git a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
index b7b1e259a1e3..f00cf58250be 100644
--- a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
+++ b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
@@ -17,7 +17,10 @@
+
+
+
diff --git a/src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj b/src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj
index e8dac192c9d2..7f6446575186 100644
--- a/src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj
+++ b/src/Mvc/Mvc.Core/src/Microsoft.AspNetCore.Mvc.Core.csproj
@@ -49,12 +49,14 @@ Microsoft.AspNetCore.Mvc.RouteAttribute
+
+
From cda91d890d794bb1dce5efd77391af83a47c4f6f Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 01:34:41 +0000
Subject: [PATCH 18/37] Add missing reference to Mvc.DataAnnotations
Added Microsoft.AspNetCore.Mvc.Abstractions to Mvc.DataAnnotations for validation types.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Mvc/Mvc.DataAnnotations/src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj b/src/Mvc/Mvc.DataAnnotations/src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj
index 7d88586a1211..f0127d642df2 100644
--- a/src/Mvc/Mvc.DataAnnotations/src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj
+++ b/src/Mvc/Mvc.DataAnnotations/src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj
@@ -12,6 +12,7 @@
+
From 29b73bcf5c1a5c3475774b3ae38cc0d722d52c1e Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 01:36:33 +0000
Subject: [PATCH 19/37] Add missing references to TestHost and Http.Connections
Added Microsoft.AspNetCore.Http to TestHost. Added Microsoft.AspNetCore.Http.Features to Http.Connections.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj | 1 +
.../src/Microsoft.AspNetCore.Http.Connections.csproj | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj b/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj
index ee8269f69090..aaf6c13767b1 100644
--- a/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj
+++ b/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj b/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
index 62d4438312d7..a0a22ba9d653 100644
--- a/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
+++ b/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
@@ -38,6 +38,7 @@
+
From 29a520181c33e7f29ae78588e19a4bb8438e13c4 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 01:48:55 +0000
Subject: [PATCH 20/37] Add missing reference to HttpLogging
Added Microsoft.AspNetCore.Http.Features to HttpLogging for IHeaderDictionary, IHttpResponseBodyFeature, and IHttpUpgradeFeature.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../HttpLogging/src/Microsoft.AspNetCore.HttpLogging.csproj | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Middleware/HttpLogging/src/Microsoft.AspNetCore.HttpLogging.csproj b/src/Middleware/HttpLogging/src/Microsoft.AspNetCore.HttpLogging.csproj
index a95de17528b3..2bfaf4114d9b 100644
--- a/src/Middleware/HttpLogging/src/Microsoft.AspNetCore.HttpLogging.csproj
+++ b/src/Middleware/HttpLogging/src/Microsoft.AspNetCore.HttpLogging.csproj
@@ -15,6 +15,7 @@
+
From 56cbf5c89bcbf1cbe36ac986f338753542c389cb Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 04:09:42 +0000
Subject: [PATCH 21/37] Add missing references to RequestDecompression and Owin
Added Microsoft.AspNetCore.Http.Features to RequestDecompression and Owin.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj | 1 +
.../src/Microsoft.AspNetCore.RequestDecompression.csproj | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj b/src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj
index 61b519d81174..a5c5f2e6eb2d 100644
--- a/src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj
+++ b/src/Http/Owin/src/Microsoft.AspNetCore.Owin.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/Middleware/RequestDecompression/src/Microsoft.AspNetCore.RequestDecompression.csproj b/src/Middleware/RequestDecompression/src/Microsoft.AspNetCore.RequestDecompression.csproj
index 97140d134369..257fe959bf59 100644
--- a/src/Middleware/RequestDecompression/src/Microsoft.AspNetCore.RequestDecompression.csproj
+++ b/src/Middleware/RequestDecompression/src/Microsoft.AspNetCore.RequestDecompression.csproj
@@ -14,6 +14,7 @@
+
From 69e84ebbe87e2794d7c1edcc1cbe12d26c5224f2 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 04:57:26 +0000
Subject: [PATCH 22/37] Add missing reference to MiddlewareAnalysis
Added Microsoft.AspNetCore.Http.Abstractions to MiddlewareAnalysis for IApplicationBuilder, RequestDelegate, and HttpContext.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../src/Microsoft.AspNetCore.MiddlewareAnalysis.csproj | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Middleware/MiddlewareAnalysis/src/Microsoft.AspNetCore.MiddlewareAnalysis.csproj b/src/Middleware/MiddlewareAnalysis/src/Microsoft.AspNetCore.MiddlewareAnalysis.csproj
index fcf5b17bf429..8717fca3c1b6 100644
--- a/src/Middleware/MiddlewareAnalysis/src/Microsoft.AspNetCore.MiddlewareAnalysis.csproj
+++ b/src/Middleware/MiddlewareAnalysis/src/Microsoft.AspNetCore.MiddlewareAnalysis.csproj
@@ -10,6 +10,7 @@
+
From a8f8bbf1a6d923338df45c9e981e1c2245379f29 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 05:00:38 +0000
Subject: [PATCH 23/37] Add missing references to AzureAppServicesIntegration
and WindowsServices
Added Microsoft.AspNetCore.Hosting.Abstractions to both projects for IWebHostBuilder and IWebHost.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../src/Microsoft.AspNetCore.AzureAppServicesIntegration.csproj | 1 +
.../src/Microsoft.AspNetCore.Hosting.WindowsServices.csproj | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/Azure/AzureAppServicesIntegration/src/Microsoft.AspNetCore.AzureAppServicesIntegration.csproj b/src/Azure/AzureAppServicesIntegration/src/Microsoft.AspNetCore.AzureAppServicesIntegration.csproj
index a644cec712c6..41fe6ff58c88 100644
--- a/src/Azure/AzureAppServicesIntegration/src/Microsoft.AspNetCore.AzureAppServicesIntegration.csproj
+++ b/src/Azure/AzureAppServicesIntegration/src/Microsoft.AspNetCore.AzureAppServicesIntegration.csproj
@@ -11,6 +11,7 @@
+
diff --git a/src/Hosting/WindowsServices/src/Microsoft.AspNetCore.Hosting.WindowsServices.csproj b/src/Hosting/WindowsServices/src/Microsoft.AspNetCore.Hosting.WindowsServices.csproj
index 1ab9352c8357..b1242bc59941 100644
--- a/src/Hosting/WindowsServices/src/Microsoft.AspNetCore.Hosting.WindowsServices.csproj
+++ b/src/Hosting/WindowsServices/src/Microsoft.AspNetCore.Hosting.WindowsServices.csproj
@@ -10,6 +10,7 @@
+
From 926ff4284b81af9d143c023a5c2163f67b94b04a Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 05:17:21 +0000
Subject: [PATCH 24/37] Add missing references to Mvc.ApiExplorer,
Authentication projects, and Mvc.Formatters.Xml
Added references to fix build errors:
- Mvc.ApiExplorer: Added Mvc.Abstractions
- Authentication.Cookies: Added Http.Abstractions, Net.Http.Headers
- Authentication.BearerToken: Added Http.Abstractions, Net.Http.Headers
- Authentication.OAuth: Added Http.Abstractions, WebUtilities, Authentication.Abstractions
- Mvc.Formatters.Xml: Added Mvc.Abstractions, WebUtilities
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
.../src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj | 1 +
.../src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj | 2 ++
.../src/Microsoft.AspNetCore.Authentication.BearerToken.csproj | 2 ++
.../src/Microsoft.AspNetCore.Authentication.Cookies.csproj | 2 ++
.../OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj | 3 +++
5 files changed, 10 insertions(+)
diff --git a/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj b/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
index c5991d82ea44..53e599cf498a 100644
--- a/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
+++ b/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
@@ -16,6 +16,7 @@
+
diff --git a/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj b/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj
index 4f981100ff88..ae2c429cdd1e 100644
--- a/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj
+++ b/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj
@@ -10,7 +10,9 @@
+
+
diff --git a/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj b/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
index 9dde1188cb03..a6564bec8d62 100644
--- a/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
+++ b/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
@@ -12,6 +12,8 @@
+
+
diff --git a/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj b/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj
index 6a3843e97683..a48f37ad8e56 100644
--- a/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj
+++ b/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj
@@ -17,6 +17,8 @@
+
+
diff --git a/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj b/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj
index 204e60ed0db3..e98ec96f705d 100644
--- a/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj
+++ b/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj
@@ -12,6 +12,9 @@
+
+
+
From 485f4f1b18c7b3f2be3de682887410a7a0c18329 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 12 Dec 2025 05:38:00 +0000
Subject: [PATCH 25/37] Add missing references to 8 projects for additional
build error fixes
Added Microsoft.AspNetCore.Http references and other missing dependencies:
- StaticAssets: Added Http
- DefaultBuilder: Added Http
- Mvc.Cors: Added Mvc.Abstractions
- Mvc.Formatters.Xml: Added Http
- Mvc.ApiExplorer: Added Http
- Mvc.DataAnnotations: Added Http.Abstractions
- Authentication.OAuth: Added Http
- Authentication.BearerToken: Added Http
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
---
src/DefaultBuilder/src/Microsoft.AspNetCore.csproj | 1 +
.../src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj | 1 +
src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj | 4 ++--
.../src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj | 1 +
.../src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj | 1 +
.../Microsoft.AspNetCore.Authentication.BearerToken.csproj | 1 +
.../src/Microsoft.AspNetCore.Authentication.OAuth.csproj | 1 +
src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj | 1 +
8 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
index f00cf58250be..9cad87277a90 100644
--- a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
+++ b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
@@ -18,6 +18,7 @@
+
diff --git a/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj b/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
index 53e599cf498a..087e1a4a6823 100644
--- a/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
+++ b/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
@@ -16,6 +16,7 @@
+
diff --git a/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj b/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj
index 482c06bca540..2e5860539afe 100644
--- a/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj
+++ b/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj
@@ -11,9 +11,9 @@
-
-
+
+
diff --git a/src/Mvc/Mvc.DataAnnotations/src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj b/src/Mvc/Mvc.DataAnnotations/src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj
index f0127d642df2..59053269ace5 100644
--- a/src/Mvc/Mvc.DataAnnotations/src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj
+++ b/src/Mvc/Mvc.DataAnnotations/src/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj b/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj
index ae2c429cdd1e..b7ac23f517b0 100644
--- a/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj
+++ b/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj
@@ -10,6 +10,7 @@
+
diff --git a/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj b/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
index a6564bec8d62..7d91c61c124d 100644
--- a/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
+++ b/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj b/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj
index e98ec96f705d..2cb8117176f6 100644
--- a/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj
+++ b/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj
@@ -13,6 +13,7 @@
+
diff --git a/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj b/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj
index b934b594a702..7472f9ba4d72 100644
--- a/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj
+++ b/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj
@@ -17,6 +17,7 @@
+
From 82483753a7e99d7bc373482407f5d956fc37bc33 Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 08:38:36 +0000
Subject: [PATCH 26/37] Updates from a local agent.
---
...icrosoft.AspNetCore.AzureAppServices.HostingStartup.csproj | 1 +
src/DefaultBuilder/src/Microsoft.AspNetCore.csproj | 1 +
...icrosoft.AspNetCore.Diagnostics.EntityFrameworkCore.csproj | 1 +
.../src/Microsoft.AspNetCore.HeaderPropagation.csproj | 1 +
.../HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj | 1 +
.../Localization/src/Microsoft.AspNetCore.Localization.csproj | 1 +
.../Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj | 2 ++
.../src/Microsoft.AspNetCore.SpaServices.Extensions.csproj | 4 +++-
.../src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj | 2 ++
src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj | 3 +++
.../src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj | 1 +
.../Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj | 1 +
.../Microsoft.AspNetCore.Authentication.BearerToken.csproj | 2 ++
.../Microsoft.AspNetCore.Authentication.Certificate.csproj | 2 ++
.../src/Microsoft.AspNetCore.Authentication.Cookies.csproj | 1 +
.../src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj | 2 ++
.../src/Microsoft.AspNetCore.Authentication.Negotiate.csproj | 2 ++
.../src/Microsoft.AspNetCore.Authentication.OAuth.csproj | 1 +
.../Microsoft.AspNetCore.Authentication.WsFederation.csproj | 2 ++
.../src/Microsoft.AspNetCore.Http.Connections.csproj | 1 +
src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj | 1 +
21 files changed, 32 insertions(+), 1 deletion(-)
diff --git a/src/Azure/AzureAppServices.HostingStartup/src/Microsoft.AspNetCore.AzureAppServices.HostingStartup.csproj b/src/Azure/AzureAppServices.HostingStartup/src/Microsoft.AspNetCore.AzureAppServices.HostingStartup.csproj
index dbc464028962..6aa6057c14a4 100644
--- a/src/Azure/AzureAppServices.HostingStartup/src/Microsoft.AspNetCore.AzureAppServices.HostingStartup.csproj
+++ b/src/Azure/AzureAppServices.HostingStartup/src/Microsoft.AspNetCore.AzureAppServices.HostingStartup.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
index 9cad87277a90..a76d4dea53ce 100644
--- a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
+++ b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
@@ -20,6 +20,7 @@
+
diff --git a/src/Middleware/Diagnostics.EntityFrameworkCore/src/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.csproj b/src/Middleware/Diagnostics.EntityFrameworkCore/src/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.csproj
index b4d919d7901a..cdff75422277 100644
--- a/src/Middleware/Diagnostics.EntityFrameworkCore/src/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.csproj
+++ b/src/Middleware/Diagnostics.EntityFrameworkCore/src/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.csproj
@@ -17,6 +17,7 @@
+
diff --git a/src/Middleware/HeaderPropagation/src/Microsoft.AspNetCore.HeaderPropagation.csproj b/src/Middleware/HeaderPropagation/src/Microsoft.AspNetCore.HeaderPropagation.csproj
index 6edd63c282ed..97561b72b311 100644
--- a/src/Middleware/HeaderPropagation/src/Microsoft.AspNetCore.HeaderPropagation.csproj
+++ b/src/Middleware/HeaderPropagation/src/Microsoft.AspNetCore.HeaderPropagation.csproj
@@ -15,6 +15,7 @@
+
diff --git a/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj b/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj
index 6491b37b1239..c54cf7d87c3d 100644
--- a/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj
+++ b/src/Middleware/HttpsPolicy/src/Microsoft.AspNetCore.HttpsPolicy.csproj
@@ -18,6 +18,7 @@
+
diff --git a/src/Middleware/Localization/src/Microsoft.AspNetCore.Localization.csproj b/src/Middleware/Localization/src/Microsoft.AspNetCore.Localization.csproj
index d66c2ed3e540..78d1b909a8d4 100644
--- a/src/Middleware/Localization/src/Microsoft.AspNetCore.Localization.csproj
+++ b/src/Middleware/Localization/src/Microsoft.AspNetCore.Localization.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/Middleware/Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj b/src/Middleware/Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj
index b2ebc472c1fa..43f295fc7ccb 100644
--- a/src/Middleware/Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj
+++ b/src/Middleware/Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj
@@ -11,6 +11,8 @@
+
+
diff --git a/src/Middleware/Spa/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj b/src/Middleware/Spa/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj
index f7d843037fe0..7196d9be1bac 100644
--- a/src/Middleware/Spa/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj
+++ b/src/Middleware/Spa/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj
@@ -7,11 +7,13 @@
+
+
-
+
diff --git a/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj b/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
index 087e1a4a6823..51c4dc6b2e2c 100644
--- a/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
+++ b/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
@@ -17,8 +17,10 @@
+
+
diff --git a/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj b/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj
index 2e5860539afe..6492c7f02290 100644
--- a/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj
+++ b/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj
@@ -12,8 +12,11 @@
+
+
+
diff --git a/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj b/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj
index b7ac23f517b0..9592b2dfaef7 100644
--- a/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj
+++ b/src/Mvc/Mvc.Formatters.Xml/src/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj
@@ -11,6 +11,7 @@
+
diff --git a/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj b/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj
index 76118e0bb154..3fbc49b0d3e6 100644
--- a/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj
+++ b/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj
@@ -11,6 +11,7 @@
+
diff --git a/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj b/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
index 7d91c61c124d..3806ff5180eb 100644
--- a/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
+++ b/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
@@ -12,8 +12,10 @@
+
+
diff --git a/src/Security/Authentication/Certificate/src/Microsoft.AspNetCore.Authentication.Certificate.csproj b/src/Security/Authentication/Certificate/src/Microsoft.AspNetCore.Authentication.Certificate.csproj
index f0ba2310f751..81b27075084c 100644
--- a/src/Security/Authentication/Certificate/src/Microsoft.AspNetCore.Authentication.Certificate.csproj
+++ b/src/Security/Authentication/Certificate/src/Microsoft.AspNetCore.Authentication.Certificate.csproj
@@ -11,6 +11,8 @@
+
+
diff --git a/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj b/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj
index a48f37ad8e56..324a8678bf48 100644
--- a/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj
+++ b/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj
@@ -17,6 +17,7 @@
+
diff --git a/src/Security/Authentication/JwtBearer/src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj b/src/Security/Authentication/JwtBearer/src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj
index 45c7f87f58d9..511261441c38 100644
--- a/src/Security/Authentication/JwtBearer/src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj
+++ b/src/Security/Authentication/JwtBearer/src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj
@@ -10,6 +10,8 @@
+
+
diff --git a/src/Security/Authentication/Negotiate/src/Microsoft.AspNetCore.Authentication.Negotiate.csproj b/src/Security/Authentication/Negotiate/src/Microsoft.AspNetCore.Authentication.Negotiate.csproj
index fdc8a4c3f908..087caf594be5 100644
--- a/src/Security/Authentication/Negotiate/src/Microsoft.AspNetCore.Authentication.Negotiate.csproj
+++ b/src/Security/Authentication/Negotiate/src/Microsoft.AspNetCore.Authentication.Negotiate.csproj
@@ -10,9 +10,11 @@
+
+
diff --git a/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj b/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj
index 2cb8117176f6..1ff8d4213269 100644
--- a/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj
+++ b/src/Security/Authentication/OAuth/src/Microsoft.AspNetCore.Authentication.OAuth.csproj
@@ -15,6 +15,7 @@
+
diff --git a/src/Security/Authentication/WsFederation/src/Microsoft.AspNetCore.Authentication.WsFederation.csproj b/src/Security/Authentication/WsFederation/src/Microsoft.AspNetCore.Authentication.WsFederation.csproj
index b68b19f727b7..3f7f62e87e1a 100644
--- a/src/Security/Authentication/WsFederation/src/Microsoft.AspNetCore.Authentication.WsFederation.csproj
+++ b/src/Security/Authentication/WsFederation/src/Microsoft.AspNetCore.Authentication.WsFederation.csproj
@@ -10,6 +10,8 @@
+
+
diff --git a/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj b/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
index a0a22ba9d653..ef8b404b77e0 100644
--- a/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
+++ b/src/SignalR/common/Http.Connections/src/Microsoft.AspNetCore.Http.Connections.csproj
@@ -38,6 +38,7 @@
+
diff --git a/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj b/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj
index 7472f9ba4d72..9b39a0102d25 100644
--- a/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj
+++ b/src/StaticAssets/src/Microsoft.AspNetCore.StaticAssets.csproj
@@ -19,6 +19,7 @@
+
From ad6299c09c6d8414ff915407140a44e0c00d540d Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 10:42:48 +0000
Subject: [PATCH 27/37] More missing refs.
---
.../src/Microsoft.AspNetCore.Components.Endpoints.csproj | 2 ++
.../Localization/src/Microsoft.AspNetCore.Localization.csproj | 2 ++
.../Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj | 1 +
.../src/Microsoft.AspNetCore.SpaServices.Extensions.csproj | 1 +
.../src/Microsoft.AspNetCore.Authentication.Cookies.csproj | 1 +
.../src/Microsoft.AspNetCore.Authentication.Facebook.csproj | 2 ++
.../src/Microsoft.AspNetCore.Authentication.Google.csproj | 2 ++
.../Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj | 2 ++
.../Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj | 2 ++
.../src/Microsoft.AspNetCore.Authentication.Twitter.csproj | 2 ++
.../src/Microsoft.AspNetCore.Authentication.WsFederation.csproj | 1 +
.../server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj | 2 ++
12 files changed, 20 insertions(+)
diff --git a/src/Components/Endpoints/src/Microsoft.AspNetCore.Components.Endpoints.csproj b/src/Components/Endpoints/src/Microsoft.AspNetCore.Components.Endpoints.csproj
index de0329c94e63..b9583106734a 100644
--- a/src/Components/Endpoints/src/Microsoft.AspNetCore.Components.Endpoints.csproj
+++ b/src/Components/Endpoints/src/Microsoft.AspNetCore.Components.Endpoints.csproj
@@ -51,6 +51,8 @@
+
+
diff --git a/src/Middleware/Localization/src/Microsoft.AspNetCore.Localization.csproj b/src/Middleware/Localization/src/Microsoft.AspNetCore.Localization.csproj
index 78d1b909a8d4..6a0d0d94fca9 100644
--- a/src/Middleware/Localization/src/Microsoft.AspNetCore.Localization.csproj
+++ b/src/Middleware/Localization/src/Microsoft.AspNetCore.Localization.csproj
@@ -14,6 +14,8 @@
+
+
diff --git a/src/Middleware/Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj b/src/Middleware/Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj
index 43f295fc7ccb..a759df0175ef 100644
--- a/src/Middleware/Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj
+++ b/src/Middleware/Spa/SpaProxy/src/Microsoft.AspNetCore.SpaProxy.csproj
@@ -13,6 +13,7 @@
+
diff --git a/src/Middleware/Spa/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj b/src/Middleware/Spa/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj
index 7196d9be1bac..3d7cf488579e 100644
--- a/src/Middleware/Spa/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj
+++ b/src/Middleware/Spa/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj
@@ -9,6 +9,7 @@
+
diff --git a/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj b/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj
index 324a8678bf48..e80ad93f2755 100644
--- a/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj
+++ b/src/Security/Authentication/Cookies/src/Microsoft.AspNetCore.Authentication.Cookies.csproj
@@ -19,6 +19,7 @@
+
diff --git a/src/Security/Authentication/Facebook/src/Microsoft.AspNetCore.Authentication.Facebook.csproj b/src/Security/Authentication/Facebook/src/Microsoft.AspNetCore.Authentication.Facebook.csproj
index 729c381798a1..938669a70ab8 100644
--- a/src/Security/Authentication/Facebook/src/Microsoft.AspNetCore.Authentication.Facebook.csproj
+++ b/src/Security/Authentication/Facebook/src/Microsoft.AspNetCore.Authentication.Facebook.csproj
@@ -9,7 +9,9 @@
+
+
diff --git a/src/Security/Authentication/Google/src/Microsoft.AspNetCore.Authentication.Google.csproj b/src/Security/Authentication/Google/src/Microsoft.AspNetCore.Authentication.Google.csproj
index 37895a9e912d..bb8a1ae776ec 100644
--- a/src/Security/Authentication/Google/src/Microsoft.AspNetCore.Authentication.Google.csproj
+++ b/src/Security/Authentication/Google/src/Microsoft.AspNetCore.Authentication.Google.csproj
@@ -9,7 +9,9 @@
+
+
diff --git a/src/Security/Authentication/MicrosoftAccount/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj b/src/Security/Authentication/MicrosoftAccount/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj
index b86749748334..e610b96abc12 100644
--- a/src/Security/Authentication/MicrosoftAccount/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj
+++ b/src/Security/Authentication/MicrosoftAccount/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj
@@ -9,7 +9,9 @@
+
+
diff --git a/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj b/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj
index 68b81587a9a0..03cf2f5f250f 100644
--- a/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj
+++ b/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj
@@ -9,7 +9,9 @@
+
+
diff --git a/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj b/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj
index c868859675fe..be0b13b7713e 100644
--- a/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj
+++ b/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj
@@ -9,7 +9,9 @@
+
+
diff --git a/src/Security/Authentication/WsFederation/src/Microsoft.AspNetCore.Authentication.WsFederation.csproj b/src/Security/Authentication/WsFederation/src/Microsoft.AspNetCore.Authentication.WsFederation.csproj
index 3f7f62e87e1a..e23b4da102a0 100644
--- a/src/Security/Authentication/WsFederation/src/Microsoft.AspNetCore.Authentication.WsFederation.csproj
+++ b/src/Security/Authentication/WsFederation/src/Microsoft.AspNetCore.Authentication.WsFederation.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj b/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
index 4fabcecbe46b..6a261703a9a9 100644
--- a/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
+++ b/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
@@ -9,6 +9,8 @@
+
+
From d04ab9720870c06dc47ee66516d8fb00a98c3ed8 Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 11:33:42 +0000
Subject: [PATCH 28/37] More.
---
.../src/Microsoft.AspNetCore.Components.Endpoints.csproj | 1 +
src/DefaultBuilder/src/Microsoft.AspNetCore.csproj | 1 +
.../src/Microsoft.AspNetCore.Localization.Routing.csproj | 1 +
.../src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj | 2 ++
src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj | 1 +
src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj | 2 ++
.../src/Microsoft.AspNetCore.Authentication.Facebook.csproj | 1 +
.../src/Microsoft.AspNetCore.Authentication.Google.csproj | 1 +
.../Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj | 1 +
.../Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj | 1 +
.../src/Microsoft.AspNetCore.Authentication.Twitter.csproj | 2 ++
.../server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj | 1 +
12 files changed, 15 insertions(+)
diff --git a/src/Components/Endpoints/src/Microsoft.AspNetCore.Components.Endpoints.csproj b/src/Components/Endpoints/src/Microsoft.AspNetCore.Components.Endpoints.csproj
index b9583106734a..ab17f88d4940 100644
--- a/src/Components/Endpoints/src/Microsoft.AspNetCore.Components.Endpoints.csproj
+++ b/src/Components/Endpoints/src/Microsoft.AspNetCore.Components.Endpoints.csproj
@@ -54,6 +54,7 @@
+
diff --git a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
index a76d4dea53ce..25b588639cab 100644
--- a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
+++ b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
@@ -26,6 +26,7 @@
+
diff --git a/src/Middleware/Localization.Routing/src/Microsoft.AspNetCore.Localization.Routing.csproj b/src/Middleware/Localization.Routing/src/Microsoft.AspNetCore.Localization.Routing.csproj
index 0177a1bbaa68..c4b8f371ce52 100644
--- a/src/Middleware/Localization.Routing/src/Microsoft.AspNetCore.Localization.Routing.csproj
+++ b/src/Middleware/Localization.Routing/src/Microsoft.AspNetCore.Localization.Routing.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj b/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
index 51c4dc6b2e2c..908e2bac0648 100644
--- a/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
+++ b/src/Mvc/Mvc.ApiExplorer/src/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj
@@ -18,9 +18,11 @@
+
+
diff --git a/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj b/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj
index 6492c7f02290..d6f30e58a009 100644
--- a/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj
+++ b/src/Mvc/Mvc.Cors/src/Microsoft.AspNetCore.Mvc.Cors.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj b/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj
index 3fbc49b0d3e6..3326a38fadd9 100644
--- a/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj
+++ b/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj
@@ -12,9 +12,11 @@
+
+
diff --git a/src/Security/Authentication/Facebook/src/Microsoft.AspNetCore.Authentication.Facebook.csproj b/src/Security/Authentication/Facebook/src/Microsoft.AspNetCore.Authentication.Facebook.csproj
index 938669a70ab8..069af83e7d5d 100644
--- a/src/Security/Authentication/Facebook/src/Microsoft.AspNetCore.Authentication.Facebook.csproj
+++ b/src/Security/Authentication/Facebook/src/Microsoft.AspNetCore.Authentication.Facebook.csproj
@@ -9,6 +9,7 @@
+
diff --git a/src/Security/Authentication/Google/src/Microsoft.AspNetCore.Authentication.Google.csproj b/src/Security/Authentication/Google/src/Microsoft.AspNetCore.Authentication.Google.csproj
index bb8a1ae776ec..301280d9f72e 100644
--- a/src/Security/Authentication/Google/src/Microsoft.AspNetCore.Authentication.Google.csproj
+++ b/src/Security/Authentication/Google/src/Microsoft.AspNetCore.Authentication.Google.csproj
@@ -9,6 +9,7 @@
+
diff --git a/src/Security/Authentication/MicrosoftAccount/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj b/src/Security/Authentication/MicrosoftAccount/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj
index e610b96abc12..35a725383ca1 100644
--- a/src/Security/Authentication/MicrosoftAccount/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj
+++ b/src/Security/Authentication/MicrosoftAccount/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount.csproj
@@ -9,6 +9,7 @@
+
diff --git a/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj b/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj
index 03cf2f5f250f..cb007929f40a 100644
--- a/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj
+++ b/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj
@@ -9,6 +9,7 @@
+
diff --git a/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj b/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj
index be0b13b7713e..4bd9db6fdb0b 100644
--- a/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj
+++ b/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj
@@ -9,9 +9,11 @@
+
+
diff --git a/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj b/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
index 6a261703a9a9..1308115c194d 100644
--- a/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
+++ b/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
@@ -9,6 +9,7 @@
+
From d9da1f6e1a8b0fb1e47773199fc31ee210506d6b Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 12:34:51 +0000
Subject: [PATCH 29/37] Adress errors from windows server log.
---
.../test/Microsoft.AspNetCore.Antiforgery.Test.csproj | 2 ++
...soft.AspNetCore.AzureAppServicesIntegration.Tests.csproj | 2 ++
.../AzureAppServicesHostingStartupSample.csproj | 2 ++
.../AzureAppServicesSample/AzureAppServicesSample.csproj | 2 ++
.../Microsoft.AspNetCore.DataProtection.Tests.csproj | 4 +++-
.../Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj | 2 ++
.../test/Microsoft.AspNetCore.TestHost.Tests.csproj | 2 ++
...icrosoft.AspNetCore.Hosting.WindowsServices.Tests.csproj | 2 ++
src/Hosting/samples/GenericWebHost/GenericWebHost.csproj | 2 ++
src/Hosting/samples/SampleStartups/SampleStartups.csproj | 2 ++
.../test/testassets/BasicLinkedApp/BasicLinkedApp.csproj | 2 ++
.../IStartupInjectionAssemblyName.csproj | 2 ++
.../Microsoft.AspNetCore.Hosting.TestSites.csproj | 2 ++
.../Microsoft.AspNetCore.Authentication.Core.Test.csproj | 2 ++
...soft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj | 1 +
.../test/Microsoft.AspNetCore.Http.Results.Tests.csproj | 2 ++
src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj | 2 ++
.../Microsoft.AspNetCore.Owin.Microbenchmarks.csproj | 2 ++
src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj | 2 ++
...crosoft.AspNetCore.Mvc.Routing.Abstractions.Tests.csproj | 2 ++
.../Microsoft.AspNetCore.Routing.Microbenchmarks.csproj | 1 +
.../UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj | 2 ++
.../Routing/test/testassets/Benchmarks/Benchmarks.csproj | 2 ++
.../test/testassets/RoutingSandbox/RoutingSandbox.csproj | 2 ++
.../test/testassets/RoutingWebSite/RoutingWebSite.csproj | 2 ++
.../samples/SampleApp/HttpAbstractions.SampleApp.csproj | 2 ++
.../CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj | 2 ++
.../Diagnostics.EFCore.FunctionalTests.csproj | 2 ++
....AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj | 2 ++
.../DatabaseErrorPageSample/DatabaseErrorPageSample.csproj | 2 ++
.../DeveloperExceptionPageSample.csproj | 2 ++
.../ExceptionHandlerSample/ExceptionHandlerSample.csproj | 2 ++
.../StatusCodePagesSample/StatusCodePagesSample.csproj | 2 ++
.../testassets/WelcomePageSample/WelcomePageSample.csproj | 2 ++
.../HeaderPropagationSample/HeaderPropagationSample.csproj | 2 ++
.../Microsoft.AspNetCore.HeaderPropagation.Tests.csproj | 2 ++
.../testassets/HealthChecksSample/HealthChecksSample.csproj | 2 ++
.../HostFiltering/sample/HostFilteringSample.csproj | 2 ++
.../test/Microsoft.AspNetCore.HostFiltering.Tests.csproj | 2 ++
.../test/Microsoft.AspNetCore.HttpLogging.Tests.csproj | 2 ++
.../HttpOverrides/sample/HttpOverridesSample.csproj | 2 ++
.../test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj | 2 ++
src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj | 2 ++
.../test/Microsoft.AspNetCore.HttpsPolicy.Tests.csproj | 2 ++
.../Localization/sample/LocalizationSample.csproj | 2 ++
.../Microsoft.AspNetCore.Localization.Tests.csproj | 2 ++
.../LocalizationWebsite/LocalizationWebsite.csproj | 2 ++
...AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj | 2 ++
.../MiddlewareAnalysisSample.csproj | 2 ++
.../Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj | 2 ++
...icrosoft.AspNetCore.OutputCaching.Microbenchmarks.csproj | 2 ++
.../test/Microsoft.AspNetCore.OutputCaching.Tests.csproj | 2 ++
.../test/Microsoft.AspNetCore.RateLimiting.Tests.csproj | 2 ++
...t.AspNetCore.RequestDecompression.Microbenchmarks.csproj | 2 ++
.../sample/RequestDecompressionSample.csproj | 4 +++-
.../Microsoft.AspNetCore.RequestDecompression.Tests.csproj | 4 +++-
.../ResponseCachingSample/ResponseCachingSample.csproj | 2 ++
.../test/Microsoft.AspNetCore.ResponseCaching.Tests.csproj | 2 ++
...ft.AspNetCore.ResponseCompression.Microbenchmarks.csproj | 2 ++
.../sample/ResponseCompressionSample.csproj | 2 ++
.../Microsoft.AspNetCore.ResponseCompression.Tests.csproj | 2 ++
src/Middleware/Rewrite/sample/RewriteSample.csproj | 2 ++
src/Middleware/Session/samples/SessionSample.csproj | 2 ++
.../Session/test/Microsoft.AspNetCore.Session.Tests.csproj | 2 ++
...Microsoft.AspNetCore.SpaServices.Extensions.Tests.csproj | 1 +
.../samples/StaticFileSample/StaticFileSample.csproj | 2 ++
.../Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj | 2 ++
.../UnitTests/Microsoft.AspNetCore.StaticFiles.Tests.csproj | 2 ++
.../ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj | 2 ++
.../UnitTests/Microsoft.AspNetCore.WebSockets.Tests.csproj | 2 ++
...rosoft.AspNetCore.ResponseCaching.Microbenchmarks.csproj | 2 ++
.../Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj | 2 ++
.../test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj | 2 ++
src/Razor/Razor/test/Microsoft.AspNetCore.Razor.Test.csproj | 2 ++
.../samples/CookieSessionSample/CookieSessionSample.csproj | 2 ++
.../WsFederation/samples/WsFedSample/WsFedSample.csproj | 2 ++
.../samples/CookiePolicySample/CookiePolicySample.csproj | 2 ++
.../test/Microsoft.AspNetCore.CookiePolicy.Test.csproj | 2 ++
.../Microsoft.AspNetCore.Security.Microbenchmarks.csproj | 6 ++++--
.../HttpSys/samples/HotAddSample/HotAddSample.csproj | 2 ++
.../HttpSys/samples/QueueSharing/QueueSharing.csproj | 2 ++
.../HttpSys/samples/SelfHostServer/SelfHostServer.csproj | 4 +++-
...crosoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj | 2 ++
.../Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj | 2 ++
.../test/testassets/DelegationSite/DelegationSite.csproj | 2 ++
.../IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj | 2 ++
.../IIS.NewShim.FunctionalTests.csproj | 2 ++
src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj | 2 ++
.../testassets/InProcessWebSite/InProcessWebSite.csproj | 2 ++
.../IIS/IISIntegration/samples/IISSample/IISSample.csproj | 2 ++
.../Microsoft.AspNetCore.Server.IISIntegration.Tests.csproj | 2 ++
.../Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj | 2 ++
...NetCore.Server.Kestrel.Transport.NamedPipes.Tests.csproj | 2 ++
...ft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj | 2 ++
...crosoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj | 2 ++
.../Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj | 2 ++
.../Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj | 2 ++
.../samples/LargeResponseApp/LargeResponseApp.csproj | 2 ++
.../Kestrel/samples/PlaintextApp/PlaintextApp.csproj | 2 ++
.../Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj | 2 ++
.../Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj | 2 ++
src/Servers/Kestrel/samples/http2cat/http2cat.csproj | 2 ++
src/Servers/Kestrel/stress/HttpStress.csproj | 4 +++-
.../InMemory.FunctionalTests.csproj | 1 +
.../Interop.FunctionalTests/Interop.FunctionalTests.csproj | 2 ++
.../Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj | 2 ++
.../Sockets.FunctionalTests/Sockets.FunctionalTests.csproj | 1 +
.../Kestrel/tools/CodeGenerator/CodeGenerator.csproj | 2 ++
.../Shared.Tests/Microsoft.AspNetCore.Shared.Tests.csproj | 5 +++++
.../Microsoft.AspNetCore.SignalR.Tests.Utils.csproj | 2 ++
src/SignalR/samples/SocialWeather/SocialWeather.csproj | 2 ++
.../server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj | 1 +
112 files changed, 228 insertions(+), 7 deletions(-)
diff --git a/src/Antiforgery/test/Microsoft.AspNetCore.Antiforgery.Test.csproj b/src/Antiforgery/test/Microsoft.AspNetCore.Antiforgery.Test.csproj
index a099c7a07ba8..26533235accb 100644
--- a/src/Antiforgery/test/Microsoft.AspNetCore.Antiforgery.Test.csproj
+++ b/src/Antiforgery/test/Microsoft.AspNetCore.Antiforgery.Test.csproj
@@ -7,7 +7,9 @@
+
+
diff --git a/src/Azure/AzureAppServicesIntegration/test/Microsoft.AspNetCore.AzureAppServicesIntegration.Tests.csproj b/src/Azure/AzureAppServicesIntegration/test/Microsoft.AspNetCore.AzureAppServicesIntegration.Tests.csproj
index 4307d4726052..32f6b0253d6e 100644
--- a/src/Azure/AzureAppServicesIntegration/test/Microsoft.AspNetCore.AzureAppServicesIntegration.Tests.csproj
+++ b/src/Azure/AzureAppServicesIntegration/test/Microsoft.AspNetCore.AzureAppServicesIntegration.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Azure/samples/AzureAppServicesHostingStartupSample/AzureAppServicesHostingStartupSample.csproj b/src/Azure/samples/AzureAppServicesHostingStartupSample/AzureAppServicesHostingStartupSample.csproj
index 81d6f1f4b572..ce4929c056e6 100644
--- a/src/Azure/samples/AzureAppServicesHostingStartupSample/AzureAppServicesHostingStartupSample.csproj
+++ b/src/Azure/samples/AzureAppServicesHostingStartupSample/AzureAppServicesHostingStartupSample.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Azure/samples/AzureAppServicesSample/AzureAppServicesSample.csproj b/src/Azure/samples/AzureAppServicesSample/AzureAppServicesSample.csproj
index f83608da7977..767f5fe487b5 100644
--- a/src/Azure/samples/AzureAppServicesSample/AzureAppServicesSample.csproj
+++ b/src/Azure/samples/AzureAppServicesSample/AzureAppServicesSample.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/DataProtection/DataProtection/test/Microsoft.AspNetCore.DataProtection.Tests/Microsoft.AspNetCore.DataProtection.Tests.csproj b/src/DataProtection/DataProtection/test/Microsoft.AspNetCore.DataProtection.Tests/Microsoft.AspNetCore.DataProtection.Tests.csproj
index c504ee3c4eb4..6b29016dd173 100644
--- a/src/DataProtection/DataProtection/test/Microsoft.AspNetCore.DataProtection.Tests/Microsoft.AspNetCore.DataProtection.Tests.csproj
+++ b/src/DataProtection/DataProtection/test/Microsoft.AspNetCore.DataProtection.Tests/Microsoft.AspNetCore.DataProtection.Tests.csproj
@@ -12,6 +12,8 @@
+
+
@@ -21,5 +23,5 @@
-
+
diff --git a/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj b/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
index 866a08e32b43..9c495c0ff7d0 100644
--- a/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
+++ b/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
@@ -23,6 +23,8 @@
+
+
diff --git a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
index 820cf3800f65..6f03aa0c428f 100644
--- a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
+++ b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
@@ -10,6 +10,8 @@
+
+
diff --git a/src/Hosting/WindowsServices/test/Microsoft.AspNetCore.Hosting.WindowsServices.Tests.csproj b/src/Hosting/WindowsServices/test/Microsoft.AspNetCore.Hosting.WindowsServices.Tests.csproj
index 431869c11222..1d17f974ba29 100644
--- a/src/Hosting/WindowsServices/test/Microsoft.AspNetCore.Hosting.WindowsServices.Tests.csproj
+++ b/src/Hosting/WindowsServices/test/Microsoft.AspNetCore.Hosting.WindowsServices.Tests.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Hosting/samples/GenericWebHost/GenericWebHost.csproj b/src/Hosting/samples/GenericWebHost/GenericWebHost.csproj
index 2f6975e33ce5..d3ca1f6295c2 100644
--- a/src/Hosting/samples/GenericWebHost/GenericWebHost.csproj
+++ b/src/Hosting/samples/GenericWebHost/GenericWebHost.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Hosting/samples/SampleStartups/SampleStartups.csproj b/src/Hosting/samples/SampleStartups/SampleStartups.csproj
index 02ed170423c3..e844a728f9a3 100644
--- a/src/Hosting/samples/SampleStartups/SampleStartups.csproj
+++ b/src/Hosting/samples/SampleStartups/SampleStartups.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Hosting/test/testassets/BasicLinkedApp/BasicLinkedApp.csproj b/src/Hosting/test/testassets/BasicLinkedApp/BasicLinkedApp.csproj
index 716ea487419e..d6cbabb0c159 100644
--- a/src/Hosting/test/testassets/BasicLinkedApp/BasicLinkedApp.csproj
+++ b/src/Hosting/test/testassets/BasicLinkedApp/BasicLinkedApp.csproj
@@ -12,6 +12,8 @@
+
+
diff --git a/src/Hosting/test/testassets/IStartupInjectionAssemblyName/IStartupInjectionAssemblyName.csproj b/src/Hosting/test/testassets/IStartupInjectionAssemblyName/IStartupInjectionAssemblyName.csproj
index 71d8a7873ca5..098c158da507 100644
--- a/src/Hosting/test/testassets/IStartupInjectionAssemblyName/IStartupInjectionAssemblyName.csproj
+++ b/src/Hosting/test/testassets/IStartupInjectionAssemblyName/IStartupInjectionAssemblyName.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Hosting/test/testassets/Microsoft.AspNetCore.Hosting.TestSites/Microsoft.AspNetCore.Hosting.TestSites.csproj b/src/Hosting/test/testassets/Microsoft.AspNetCore.Hosting.TestSites/Microsoft.AspNetCore.Hosting.TestSites.csproj
index 64124387250e..0bf6fc2308b7 100644
--- a/src/Hosting/test/testassets/Microsoft.AspNetCore.Hosting.TestSites/Microsoft.AspNetCore.Hosting.TestSites.csproj
+++ b/src/Hosting/test/testassets/Microsoft.AspNetCore.Hosting.TestSites/Microsoft.AspNetCore.Hosting.TestSites.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Http/Authentication.Core/test/Microsoft.AspNetCore.Authentication.Core.Test.csproj b/src/Http/Authentication.Core/test/Microsoft.AspNetCore.Authentication.Core.Test.csproj
index 528810eaaacd..9c7dd0a085dd 100644
--- a/src/Http/Authentication.Core/test/Microsoft.AspNetCore.Authentication.Core.Test.csproj
+++ b/src/Http/Authentication.Core/test/Microsoft.AspNetCore.Authentication.Core.Test.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Http/Http.Abstractions/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj b/src/Http/Http.Abstractions/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj
index f4f35eea0067..1dc0f711fe0a 100644
--- a/src/Http/Http.Abstractions/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj
+++ b/src/Http/Http.Abstractions/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj
@@ -8,6 +8,7 @@
+
diff --git a/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj b/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
index c9d39f858d43..23833a39fd30 100644
--- a/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
+++ b/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
@@ -6,7 +6,9 @@
+
+
diff --git a/src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj b/src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj
index f85700528b1e..f00221095582 100644
--- a/src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj
+++ b/src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Http/Owin/benchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks.csproj b/src/Http/Owin/benchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks.csproj
index 5ca0b8f6e5da..7ccda5caa031 100644
--- a/src/Http/Owin/benchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks.csproj
+++ b/src/Http/Owin/benchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj b/src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj
index f281b8319572..3935b4715346 100644
--- a/src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj
+++ b/src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Http/Routing.Abstractions/test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests.csproj b/src/Http/Routing.Abstractions/test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests.csproj
index ecaf259d84e1..dbdb45b7bac8 100644
--- a/src/Http/Routing.Abstractions/test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests.csproj
+++ b/src/Http/Routing.Abstractions/test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj b/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj
index 2a46da091cba..38b5901e4fb4 100644
--- a/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj
+++ b/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj
@@ -42,6 +42,7 @@
+
diff --git a/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj b/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj
index b4daa70a2f5f..aa169e353bf3 100644
--- a/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj
+++ b/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj
@@ -10,7 +10,9 @@
+
+
diff --git a/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj b/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj
index b9de65bc9930..c65bc3e75b67 100644
--- a/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj
+++ b/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj b/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj
index 554514e46f57..72983c9b1770 100644
--- a/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj
+++ b/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj b/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj
index 554514e46f57..72983c9b1770 100644
--- a/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj
+++ b/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Http/samples/SampleApp/HttpAbstractions.SampleApp.csproj b/src/Http/samples/SampleApp/HttpAbstractions.SampleApp.csproj
index b28850cf2f0d..d9cb82b9110f 100644
--- a/src/Http/samples/SampleApp/HttpAbstractions.SampleApp.csproj
+++ b/src/Http/samples/SampleApp/HttpAbstractions.SampleApp.csproj
@@ -7,7 +7,9 @@
+
+
diff --git a/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj b/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj
index 802ceb3d0bc9..af1727d55feb 100644
--- a/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj
+++ b/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj b/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj
index 11fec3c8b8ba..84d7eeb4eae9 100644
--- a/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj
+++ b/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj
@@ -9,6 +9,8 @@
+
+
diff --git a/src/Middleware/Diagnostics.EntityFrameworkCore/test/UnitTests/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj b/src/Middleware/Diagnostics.EntityFrameworkCore/test/UnitTests/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj
index ba711f0d3912..51a8817ea85d 100644
--- a/src/Middleware/Diagnostics.EntityFrameworkCore/test/UnitTests/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj
+++ b/src/Middleware/Diagnostics.EntityFrameworkCore/test/UnitTests/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj b/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj
index f110f1152d02..e4549070ae9f 100644
--- a/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj
@@ -10,6 +10,8 @@
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj b/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj
index 39fb247b9283..c90c162df273 100644
--- a/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj
@@ -9,6 +9,8 @@
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj b/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj
index e2eaca2faeda..97c718f57ec1 100644
--- a/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj b/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj
index 9c24fc8c3f64..76c297ee8b8c 100644
--- a/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj b/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj
index 755410745d90..fb3417f02342 100644
--- a/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj b/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj
index a142440c718f..8f495851db7a 100644
--- a/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj
+++ b/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Middleware/HeaderPropagation/test/Microsoft.AspNetCore.HeaderPropagation.Tests.csproj b/src/Middleware/HeaderPropagation/test/Microsoft.AspNetCore.HeaderPropagation.Tests.csproj
index ccf0fc72694f..341188c70f85 100644
--- a/src/Middleware/HeaderPropagation/test/Microsoft.AspNetCore.HeaderPropagation.Tests.csproj
+++ b/src/Middleware/HeaderPropagation/test/Microsoft.AspNetCore.HeaderPropagation.Tests.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj b/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj
index 6547dc723254..2f3f0b15d682 100644
--- a/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj
+++ b/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj b/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj
index c963c9edc8b7..4923965e27ec 100644
--- a/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj
+++ b/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/HostFiltering/test/Microsoft.AspNetCore.HostFiltering.Tests.csproj b/src/Middleware/HostFiltering/test/Microsoft.AspNetCore.HostFiltering.Tests.csproj
index b8974a9955c6..765296756a9a 100644
--- a/src/Middleware/HostFiltering/test/Microsoft.AspNetCore.HostFiltering.Tests.csproj
+++ b/src/Middleware/HostFiltering/test/Microsoft.AspNetCore.HostFiltering.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj b/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj
index 6204ea459146..2f0a2e2a8559 100644
--- a/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj
+++ b/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj b/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj
index 12815fc592bf..74db7e842c96 100644
--- a/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj
+++ b/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/HttpOverrides/test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj b/src/Middleware/HttpOverrides/test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj
index c34f7f8600c2..bddd7d169d22 100644
--- a/src/Middleware/HttpOverrides/test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj
+++ b/src/Middleware/HttpOverrides/test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj b/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj
index fd534c9f58f8..d41d069bc86e 100644
--- a/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj
+++ b/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/HttpsPolicy/test/Microsoft.AspNetCore.HttpsPolicy.Tests.csproj b/src/Middleware/HttpsPolicy/test/Microsoft.AspNetCore.HttpsPolicy.Tests.csproj
index 7691bf5733f1..fcf23f9b566b 100644
--- a/src/Middleware/HttpsPolicy/test/Microsoft.AspNetCore.HttpsPolicy.Tests.csproj
+++ b/src/Middleware/HttpsPolicy/test/Microsoft.AspNetCore.HttpsPolicy.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Middleware/Localization/sample/LocalizationSample.csproj b/src/Middleware/Localization/sample/LocalizationSample.csproj
index 07e8a83753b2..fd63009fd7ed 100644
--- a/src/Middleware/Localization/sample/LocalizationSample.csproj
+++ b/src/Middleware/Localization/sample/LocalizationSample.csproj
@@ -9,6 +9,8 @@
+
+
diff --git a/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj b/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj
index 1b561739a0f5..1d3ea58b9631 100644
--- a/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj
+++ b/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj b/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj
index d5d3901162b2..ffdeb9ae7d30 100644
--- a/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj
+++ b/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj
@@ -11,6 +11,8 @@
+
+
diff --git a/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj b/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj
index 1cd965d14c0e..c86e222de56f 100644
--- a/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj
+++ b/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj b/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj
index 5f4a29484288..f6808ceaebf2 100644
--- a/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj
+++ b/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj b/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj
index cd69a2fb1394..2a90437fd2df 100644
--- a/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj
+++ b/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Middleware/OutputCaching/perf/Microbenchmarks/Microsoft.AspNetCore.OutputCaching.Microbenchmarks.csproj b/src/Middleware/OutputCaching/perf/Microbenchmarks/Microsoft.AspNetCore.OutputCaching.Microbenchmarks.csproj
index 4e4a6e747acd..559d372cd7cc 100644
--- a/src/Middleware/OutputCaching/perf/Microbenchmarks/Microsoft.AspNetCore.OutputCaching.Microbenchmarks.csproj
+++ b/src/Middleware/OutputCaching/perf/Microbenchmarks/Microsoft.AspNetCore.OutputCaching.Microbenchmarks.csproj
@@ -10,6 +10,8 @@
+
+
diff --git a/src/Middleware/OutputCaching/test/Microsoft.AspNetCore.OutputCaching.Tests.csproj b/src/Middleware/OutputCaching/test/Microsoft.AspNetCore.OutputCaching.Tests.csproj
index 4aba46bf5c87..1ca49aa8472b 100644
--- a/src/Middleware/OutputCaching/test/Microsoft.AspNetCore.OutputCaching.Tests.csproj
+++ b/src/Middleware/OutputCaching/test/Microsoft.AspNetCore.OutputCaching.Tests.csproj
@@ -13,6 +13,8 @@
+
+
diff --git a/src/Middleware/RateLimiting/test/Microsoft.AspNetCore.RateLimiting.Tests.csproj b/src/Middleware/RateLimiting/test/Microsoft.AspNetCore.RateLimiting.Tests.csproj
index a9dbb64cab99..69af9aaf197c 100644
--- a/src/Middleware/RateLimiting/test/Microsoft.AspNetCore.RateLimiting.Tests.csproj
+++ b/src/Middleware/RateLimiting/test/Microsoft.AspNetCore.RateLimiting.Tests.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Middleware/RequestDecompression/perf/Microbenchmarks/Microsoft.AspNetCore.RequestDecompression.Microbenchmarks.csproj b/src/Middleware/RequestDecompression/perf/Microbenchmarks/Microsoft.AspNetCore.RequestDecompression.Microbenchmarks.csproj
index f40a5187122e..c7725e79eb37 100644
--- a/src/Middleware/RequestDecompression/perf/Microbenchmarks/Microsoft.AspNetCore.RequestDecompression.Microbenchmarks.csproj
+++ b/src/Middleware/RequestDecompression/perf/Microbenchmarks/Microsoft.AspNetCore.RequestDecompression.Microbenchmarks.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj b/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj
index fec9ada30879..ba9af0ee0b88 100644
--- a/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj
+++ b/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj
@@ -6,8 +6,10 @@
+
+
-
\ No newline at end of file
+
diff --git a/src/Middleware/RequestDecompression/test/Microsoft.AspNetCore.RequestDecompression.Tests.csproj b/src/Middleware/RequestDecompression/test/Microsoft.AspNetCore.RequestDecompression.Tests.csproj
index 21eb7830cc38..02bfecb25623 100644
--- a/src/Middleware/RequestDecompression/test/Microsoft.AspNetCore.RequestDecompression.Tests.csproj
+++ b/src/Middleware/RequestDecompression/test/Microsoft.AspNetCore.RequestDecompression.Tests.csproj
@@ -6,9 +6,11 @@
+
+
-
\ No newline at end of file
+
diff --git a/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj b/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj
index 6522e4a12b51..49934055a4e5 100644
--- a/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj
+++ b/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/ResponseCaching/test/Microsoft.AspNetCore.ResponseCaching.Tests.csproj b/src/Middleware/ResponseCaching/test/Microsoft.AspNetCore.ResponseCaching.Tests.csproj
index 9e25eb42230a..7c5cd91743ba 100644
--- a/src/Middleware/ResponseCaching/test/Microsoft.AspNetCore.ResponseCaching.Tests.csproj
+++ b/src/Middleware/ResponseCaching/test/Microsoft.AspNetCore.ResponseCaching.Tests.csproj
@@ -13,6 +13,8 @@
+
+
diff --git a/src/Middleware/ResponseCompression/perf/Microbenchmarks/Microsoft.AspNetCore.ResponseCompression.Microbenchmarks.csproj b/src/Middleware/ResponseCompression/perf/Microbenchmarks/Microsoft.AspNetCore.ResponseCompression.Microbenchmarks.csproj
index fc3755689b03..3aca191238a3 100644
--- a/src/Middleware/ResponseCompression/perf/Microbenchmarks/Microsoft.AspNetCore.ResponseCompression.Microbenchmarks.csproj
+++ b/src/Middleware/ResponseCompression/perf/Microbenchmarks/Microsoft.AspNetCore.ResponseCompression.Microbenchmarks.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj b/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj
index d5d099263ad6..1181c81916f0 100644
--- a/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj
+++ b/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj
@@ -10,6 +10,8 @@
+
+
diff --git a/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj b/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj
index bf2649c251b9..ee820fa9be24 100644
--- a/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj
+++ b/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj
@@ -10,6 +10,8 @@
+
+
diff --git a/src/Middleware/Rewrite/sample/RewriteSample.csproj b/src/Middleware/Rewrite/sample/RewriteSample.csproj
index d89f3f138fca..4f3c6c60c320 100644
--- a/src/Middleware/Rewrite/sample/RewriteSample.csproj
+++ b/src/Middleware/Rewrite/sample/RewriteSample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/Session/samples/SessionSample.csproj b/src/Middleware/Session/samples/SessionSample.csproj
index 3beef6fa7b71..26dce502c596 100644
--- a/src/Middleware/Session/samples/SessionSample.csproj
+++ b/src/Middleware/Session/samples/SessionSample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj b/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj
index c10e8e8565fc..0c45d3269a8a 100644
--- a/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj
+++ b/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Middleware/Spa/SpaServices.Extensions/test/Microsoft.AspNetCore.SpaServices.Extensions.Tests.csproj b/src/Middleware/Spa/SpaServices.Extensions/test/Microsoft.AspNetCore.SpaServices.Extensions.Tests.csproj
index 56847fc93bde..190ff4dd026d 100644
--- a/src/Middleware/Spa/SpaServices.Extensions/test/Microsoft.AspNetCore.SpaServices.Extensions.Tests.csproj
+++ b/src/Middleware/Spa/SpaServices.Extensions/test/Microsoft.AspNetCore.SpaServices.Extensions.Tests.csproj
@@ -9,6 +9,7 @@
+
diff --git a/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj b/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj
index a953d61577ac..6315427408ac 100644
--- a/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj
+++ b/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Middleware/StaticFiles/test/FunctionalTests/Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj b/src/Middleware/StaticFiles/test/FunctionalTests/Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj
index f3537f09b5f7..a17f0923cb95 100644
--- a/src/Middleware/StaticFiles/test/FunctionalTests/Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj
+++ b/src/Middleware/StaticFiles/test/FunctionalTests/Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj
@@ -27,6 +27,8 @@
+
+
diff --git a/src/Middleware/StaticFiles/test/UnitTests/Microsoft.AspNetCore.StaticFiles.Tests.csproj b/src/Middleware/StaticFiles/test/UnitTests/Microsoft.AspNetCore.StaticFiles.Tests.csproj
index 17aa617dfb3a..ad43ee30ee41 100644
--- a/src/Middleware/StaticFiles/test/UnitTests/Microsoft.AspNetCore.StaticFiles.Tests.csproj
+++ b/src/Middleware/StaticFiles/test/UnitTests/Microsoft.AspNetCore.StaticFiles.Tests.csproj
@@ -14,6 +14,8 @@
+
+
diff --git a/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj b/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj
index dff1565f7f13..2011a68496c3 100644
--- a/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj
+++ b/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj
@@ -11,6 +11,8 @@
+
+
diff --git a/src/Middleware/WebSockets/test/UnitTests/Microsoft.AspNetCore.WebSockets.Tests.csproj b/src/Middleware/WebSockets/test/UnitTests/Microsoft.AspNetCore.WebSockets.Tests.csproj
index d242011a0c0d..89ea1e6abd56 100644
--- a/src/Middleware/WebSockets/test/UnitTests/Microsoft.AspNetCore.WebSockets.Tests.csproj
+++ b/src/Middleware/WebSockets/test/UnitTests/Microsoft.AspNetCore.WebSockets.Tests.csproj
@@ -9,6 +9,8 @@
+
+
diff --git a/src/Middleware/perf/ResponseCaching.Microbenchmarks/Microsoft.AspNetCore.ResponseCaching.Microbenchmarks.csproj b/src/Middleware/perf/ResponseCaching.Microbenchmarks/Microsoft.AspNetCore.ResponseCaching.Microbenchmarks.csproj
index 15f456fd2f41..b102f3472d6f 100644
--- a/src/Middleware/perf/ResponseCaching.Microbenchmarks/Microsoft.AspNetCore.ResponseCaching.Microbenchmarks.csproj
+++ b/src/Middleware/perf/ResponseCaching.Microbenchmarks/Microsoft.AspNetCore.ResponseCaching.Microbenchmarks.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj b/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj
index 932fff081b16..713dfa82abc0 100644
--- a/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj
+++ b/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj
@@ -10,6 +10,8 @@
+
+
diff --git a/src/Razor/Razor.Runtime/test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj b/src/Razor/Razor.Runtime/test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj
index 2e296ed96afb..0106f69ff4c2 100644
--- a/src/Razor/Razor.Runtime/test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj
+++ b/src/Razor/Razor.Runtime/test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj
@@ -15,6 +15,8 @@
+
+
diff --git a/src/Razor/Razor/test/Microsoft.AspNetCore.Razor.Test.csproj b/src/Razor/Razor/test/Microsoft.AspNetCore.Razor.Test.csproj
index af803f1ef07b..6a57d914f984 100644
--- a/src/Razor/Razor/test/Microsoft.AspNetCore.Razor.Test.csproj
+++ b/src/Razor/Razor/test/Microsoft.AspNetCore.Razor.Test.csproj
@@ -15,6 +15,8 @@
+
+
diff --git a/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj b/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj
index 518454d9a1d1..52aaae5177be 100644
--- a/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj
+++ b/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj b/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj
index da15b377db33..1acc0d6dda8f 100644
--- a/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj
+++ b/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj b/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj
index 836518fbbd32..f605a56a5c98 100644
--- a/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj
+++ b/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj b/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj
index 4bdc80afa01a..a8702f9df372 100644
--- a/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj
+++ b/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj
@@ -12,6 +12,8 @@
+
+
diff --git a/src/Security/perf/Microbenchmarks/Microsoft.AspNetCore.Security.Microbenchmarks.csproj b/src/Security/perf/Microbenchmarks/Microsoft.AspNetCore.Security.Microbenchmarks.csproj
index cf86764d09e2..3fdcc371e996 100644
--- a/src/Security/perf/Microbenchmarks/Microsoft.AspNetCore.Security.Microbenchmarks.csproj
+++ b/src/Security/perf/Microbenchmarks/Microsoft.AspNetCore.Security.Microbenchmarks.csproj
@@ -1,5 +1,5 @@
-
+
$(DefaultNetCoreTargetFramework)
Exe
@@ -7,12 +7,14 @@
true
Microsoft.AspNetCore.Security
-
+
+
+
diff --git a/src/Servers/HttpSys/samples/HotAddSample/HotAddSample.csproj b/src/Servers/HttpSys/samples/HotAddSample/HotAddSample.csproj
index cf4b7f8a960e..29ba5ec54093 100644
--- a/src/Servers/HttpSys/samples/HotAddSample/HotAddSample.csproj
+++ b/src/Servers/HttpSys/samples/HotAddSample/HotAddSample.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Servers/HttpSys/samples/QueueSharing/QueueSharing.csproj b/src/Servers/HttpSys/samples/QueueSharing/QueueSharing.csproj
index 50b95bc6ce4e..3ce720474eb9 100644
--- a/src/Servers/HttpSys/samples/QueueSharing/QueueSharing.csproj
+++ b/src/Servers/HttpSys/samples/QueueSharing/QueueSharing.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Servers/HttpSys/samples/SelfHostServer/SelfHostServer.csproj b/src/Servers/HttpSys/samples/SelfHostServer/SelfHostServer.csproj
index b46454ea0999..46b04f963c21 100644
--- a/src/Servers/HttpSys/samples/SelfHostServer/SelfHostServer.csproj
+++ b/src/Servers/HttpSys/samples/SelfHostServer/SelfHostServer.csproj
@@ -5,7 +5,7 @@
Exe
true
-
+
214124cd-d05b-4309-9af9-9caa44b2b74a
@@ -13,6 +13,8 @@
+
+
diff --git a/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj b/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
index f59ba8ab7c22..bcf276805c70 100644
--- a/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
+++ b/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
@@ -29,6 +29,8 @@
+
+
diff --git a/src/Servers/HttpSys/test/Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj b/src/Servers/HttpSys/test/Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj
index 2929bc66f603..de5cbdc3bc94 100644
--- a/src/Servers/HttpSys/test/Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj
+++ b/src/Servers/HttpSys/test/Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Servers/HttpSys/test/testassets/DelegationSite/DelegationSite.csproj b/src/Servers/HttpSys/test/testassets/DelegationSite/DelegationSite.csproj
index e125cecc1622..f5f48c3f8ed8 100644
--- a/src/Servers/HttpSys/test/testassets/DelegationSite/DelegationSite.csproj
+++ b/src/Servers/HttpSys/test/testassets/DelegationSite/DelegationSite.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj b/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj
index fa97a75dd5b0..2b7b223c9178 100644
--- a/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj
+++ b/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj
@@ -11,6 +11,8 @@
+
+
diff --git a/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj b/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj
index 40e30287b319..3034d67b9837 100644
--- a/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj
+++ b/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj
@@ -38,6 +38,8 @@
+
+
diff --git a/src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj b/src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj
index db1558e04b10..6a2f2353314b 100644
--- a/src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj
+++ b/src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj
@@ -18,6 +18,8 @@
+
+
diff --git a/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
index 658f4c3f9b58..7a32a0182a54 100644
--- a/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
+++ b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
@@ -23,6 +23,8 @@
+
+
diff --git a/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj b/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj
index 44323fdee641..28b1a75183b3 100644
--- a/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj
+++ b/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/Servers/IIS/IISIntegration/test/Tests/Microsoft.AspNetCore.Server.IISIntegration.Tests.csproj b/src/Servers/IIS/IISIntegration/test/Tests/Microsoft.AspNetCore.Server.IISIntegration.Tests.csproj
index 98dad5c427c9..a492efb06bc1 100644
--- a/src/Servers/IIS/IISIntegration/test/Tests/Microsoft.AspNetCore.Server.IISIntegration.Tests.csproj
+++ b/src/Servers/IIS/IISIntegration/test/Tests/Microsoft.AspNetCore.Server.IISIntegration.Tests.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj b/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj
index 37aea90bcf3c..8d4d01d197ea 100644
--- a/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj
+++ b/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj
@@ -24,6 +24,8 @@
+
+
diff --git a/src/Servers/Kestrel/Transport.NamedPipes/test/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.Tests.csproj b/src/Servers/Kestrel/Transport.NamedPipes/test/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.Tests.csproj
index 3010a02590fd..1734e407b43b 100644
--- a/src/Servers/Kestrel/Transport.NamedPipes/test/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.Tests.csproj
+++ b/src/Servers/Kestrel/Transport.NamedPipes/test/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.Tests.csproj
@@ -24,6 +24,8 @@
+
+
diff --git a/src/Servers/Kestrel/Transport.Quic/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj b/src/Servers/Kestrel/Transport.Quic/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj
index f4eccaad18f0..e55b5799fead 100644
--- a/src/Servers/Kestrel/Transport.Quic/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj
+++ b/src/Servers/Kestrel/Transport.Quic/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj
@@ -27,6 +27,8 @@
+
+
diff --git a/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj b/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj
index 0d4fff0fdc0f..cf7a79de1380 100644
--- a/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj
+++ b/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj
@@ -33,6 +33,8 @@
+
+
diff --git a/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj b/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj
index d0930e69fee0..04a4e6652c60 100644
--- a/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj
+++ b/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj b/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj
index c56f7fb39162..aca4b7b25f96 100644
--- a/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj
+++ b/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj
@@ -12,6 +12,8 @@
+
+
diff --git a/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj b/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj
index 615f2698671c..8be0623a7a9d 100644
--- a/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj
+++ b/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj b/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj
index e5bb31ff0f90..eaee63a562a9 100644
--- a/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj
+++ b/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj b/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj
index 6612d7d2f9aa..397cf5ffa5ab 100644
--- a/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj
+++ b/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj b/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj
index d0930e69fee0..04a4e6652c60 100644
--- a/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj
+++ b/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Servers/Kestrel/samples/http2cat/http2cat.csproj b/src/Servers/Kestrel/samples/http2cat/http2cat.csproj
index a46f806a3471..da44511365e9 100644
--- a/src/Servers/Kestrel/samples/http2cat/http2cat.csproj
+++ b/src/Servers/Kestrel/samples/http2cat/http2cat.csproj
@@ -22,6 +22,8 @@
+
+
diff --git a/src/Servers/Kestrel/stress/HttpStress.csproj b/src/Servers/Kestrel/stress/HttpStress.csproj
index 7349608451e8..864bc6103421 100644
--- a/src/Servers/Kestrel/stress/HttpStress.csproj
+++ b/src/Servers/Kestrel/stress/HttpStress.csproj
@@ -10,6 +10,8 @@
+
+
@@ -19,4 +21,4 @@
214124cd-d05b-4309-9af9-9caa44b2b74a
-
\ No newline at end of file
+
diff --git a/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj b/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj
index 1a69f20b58af..a0937f2b0381 100644
--- a/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj
+++ b/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj
@@ -34,6 +34,7 @@
+
diff --git a/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj b/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj
index e44eb2d00fca..6f7d97f73ab8 100644
--- a/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj
+++ b/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj
@@ -32,6 +32,8 @@
+
+
diff --git a/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj b/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj
index c98c0f02cb8e..7b39c2ac145b 100644
--- a/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj
+++ b/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj
@@ -26,6 +26,8 @@
+
+
diff --git a/src/Servers/Kestrel/test/Sockets.FunctionalTests/Sockets.FunctionalTests.csproj b/src/Servers/Kestrel/test/Sockets.FunctionalTests/Sockets.FunctionalTests.csproj
index 4066e1592550..ae558fc74ba1 100644
--- a/src/Servers/Kestrel/test/Sockets.FunctionalTests/Sockets.FunctionalTests.csproj
+++ b/src/Servers/Kestrel/test/Sockets.FunctionalTests/Sockets.FunctionalTests.csproj
@@ -31,6 +31,7 @@
+
diff --git a/src/Servers/Kestrel/tools/CodeGenerator/CodeGenerator.csproj b/src/Servers/Kestrel/tools/CodeGenerator/CodeGenerator.csproj
index 207921c9a96b..255145110896 100644
--- a/src/Servers/Kestrel/tools/CodeGenerator/CodeGenerator.csproj
+++ b/src/Servers/Kestrel/tools/CodeGenerator/CodeGenerator.csproj
@@ -20,6 +20,8 @@
+
+
diff --git a/src/Shared/test/Shared.Tests/Microsoft.AspNetCore.Shared.Tests.csproj b/src/Shared/test/Shared.Tests/Microsoft.AspNetCore.Shared.Tests.csproj
index e017c1501705..fd3d5c84b62b 100644
--- a/src/Shared/test/Shared.Tests/Microsoft.AspNetCore.Shared.Tests.csproj
+++ b/src/Shared/test/Shared.Tests/Microsoft.AspNetCore.Shared.Tests.csproj
@@ -8,6 +8,11 @@
annotations
+
+
+
+
+
diff --git a/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj b/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj
index 4ce3552b3f4c..d7eead61efb8 100644
--- a/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj
+++ b/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj
@@ -11,6 +11,8 @@
+
+
diff --git a/src/SignalR/samples/SocialWeather/SocialWeather.csproj b/src/SignalR/samples/SocialWeather/SocialWeather.csproj
index fe8e362e2cd3..78c7d3105eda 100644
--- a/src/SignalR/samples/SocialWeather/SocialWeather.csproj
+++ b/src/SignalR/samples/SocialWeather/SocialWeather.csproj
@@ -6,6 +6,8 @@
+
+
diff --git a/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj b/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
index 1308115c194d..0266bde389a2 100644
--- a/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
+++ b/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
@@ -9,6 +9,7 @@
+
From f467dbd97f09602ae80db1233bab1dec057d9df9 Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 12:43:57 +0000
Subject: [PATCH 30/37] Fix inux failures caused by `--no-dependencies`
---
.../Microsoft.AspNetCore.Components.WebAssembly.Server.csproj | 1 +
src/DefaultBuilder/src/Microsoft.AspNetCore.csproj | 2 ++
.../Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj | 1 +
.../src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj | 4 ++++
.../Microsoft.AspNetCore.Authentication.BearerToken.csproj | 1 +
.../src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj | 1 +
.../src/Microsoft.AspNetCore.Authentication.Negotiate.csproj | 1 +
.../Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj | 1 +
.../src/Microsoft.AspNetCore.Authentication.Twitter.csproj | 1 +
.../server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj | 1 +
10 files changed, 14 insertions(+)
diff --git a/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj b/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj
index b3f42e28fe8a..334a2af53b19 100644
--- a/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj
+++ b/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
index 25b588639cab..0f7003b31348 100644
--- a/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
+++ b/src/DefaultBuilder/src/Microsoft.AspNetCore.csproj
@@ -12,7 +12,9 @@
+
+
diff --git a/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj b/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj
index 3326a38fadd9..1b5a38b77f03 100644
--- a/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj
+++ b/src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj
@@ -11,6 +11,7 @@
+
diff --git a/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj b/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj
index 24dd476f1022..548b8405426b 100644
--- a/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj
+++ b/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj
@@ -26,6 +26,10 @@
+
+
+
+
diff --git a/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj b/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
index 3806ff5180eb..bdf636d36bb9 100644
--- a/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
+++ b/src/Security/Authentication/BearerToken/src/Microsoft.AspNetCore.Authentication.BearerToken.csproj
@@ -15,6 +15,7 @@
+
diff --git a/src/Security/Authentication/JwtBearer/src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj b/src/Security/Authentication/JwtBearer/src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj
index 511261441c38..3046add63724 100644
--- a/src/Security/Authentication/JwtBearer/src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj
+++ b/src/Security/Authentication/JwtBearer/src/Microsoft.AspNetCore.Authentication.JwtBearer.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/Security/Authentication/Negotiate/src/Microsoft.AspNetCore.Authentication.Negotiate.csproj b/src/Security/Authentication/Negotiate/src/Microsoft.AspNetCore.Authentication.Negotiate.csproj
index 087caf594be5..cfa0110f73c3 100644
--- a/src/Security/Authentication/Negotiate/src/Microsoft.AspNetCore.Authentication.Negotiate.csproj
+++ b/src/Security/Authentication/Negotiate/src/Microsoft.AspNetCore.Authentication.Negotiate.csproj
@@ -15,6 +15,7 @@
+
diff --git a/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj b/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj
index cb007929f40a..08d735332136 100644
--- a/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj
+++ b/src/Security/Authentication/OpenIdConnect/src/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj
@@ -13,6 +13,7 @@
+
diff --git a/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj b/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj
index 4bd9db6fdb0b..646fdadd5ea6 100644
--- a/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj
+++ b/src/Security/Authentication/Twitter/src/Microsoft.AspNetCore.Authentication.Twitter.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj b/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
index 0266bde389a2..a14b1f809059 100644
--- a/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
+++ b/src/SignalR/server/SignalR/src/Microsoft.AspNetCore.SignalR.csproj
@@ -12,6 +12,7 @@
+
From cd014a3e4a4f34a5f4ffec25fe51e4ca75dbe2e9 Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 12:47:06 +0000
Subject: [PATCH 31/37] Fix source build issues.
---
.../src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj b/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj
index 548b8405426b..83305a9d31c0 100644
--- a/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj
+++ b/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj
@@ -30,6 +30,7 @@
+
From 3bb096529b95d26311f6cb6036f1b7fa2dd59d1a Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 13:21:00 +0000
Subject: [PATCH 32/37] More.
---
.../src/Microsoft.AspNetCore.Components.Server.csproj | 8 ++++++++
...rosoft.AspNetCore.Components.WebAssembly.Server.csproj | 3 +++
.../Core/src/Microsoft.AspNetCore.Identity.csproj | 7 +++++++
.../src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj | 2 ++
src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj | 1 +
5 files changed, 21 insertions(+)
diff --git a/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj b/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj
index 216f05e54134..492893565757 100644
--- a/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj
+++ b/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj
@@ -17,10 +17,18 @@
+
+
+
+
+
+
+
+
diff --git a/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj b/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj
index 334a2af53b19..aa4e50201912 100644
--- a/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj
+++ b/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj
@@ -15,6 +15,9 @@
+
+
+
diff --git a/src/Identity/Core/src/Microsoft.AspNetCore.Identity.csproj b/src/Identity/Core/src/Microsoft.AspNetCore.Identity.csproj
index 82a750e1393c..4f11979ca661 100644
--- a/src/Identity/Core/src/Microsoft.AspNetCore.Identity.csproj
+++ b/src/Identity/Core/src/Microsoft.AspNetCore.Identity.csproj
@@ -19,10 +19,17 @@
+
+
+
+
+
+
+
diff --git a/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj b/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj
index 83305a9d31c0..aa03290a4113 100644
--- a/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj
+++ b/src/Mvc/Mvc.ViewFeatures/src/Microsoft.AspNetCore.Mvc.ViewFeatures.csproj
@@ -24,8 +24,10 @@
+
+
diff --git a/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj b/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
index 686bdcaf6329..18956b94b79d 100644
--- a/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
+++ b/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
@@ -17,6 +17,7 @@
+
From 8d36c143f8f2b75e7f6e6550933be4214b216431 Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 14:59:08 +0000
Subject: [PATCH 33/37] More.
---
.../test/Microsoft.AspNetCore.Antiforgery.Test.csproj | 1 +
.../Microsoft.AspNetCore.Components.Endpoints.Tests.csproj | 4 ++++
.../src/Microsoft.AspNetCore.Components.Server.csproj | 1 +
.../Microsoft.AspNetCore.DataProtection.Tests.csproj | 1 +
.../samples/SampleApp/DefaultBuilder.SampleApp.csproj | 5 +++++
.../Microsoft.AspNetCore.Tests.csproj | 5 +++++
.../CreateDefaultBuilderApp/CreateDefaultBuilderApp.csproj | 1 +
.../CreateDefaultBuilderOfTApp.csproj | 1 +
.../DependencyInjectionApp/DependencyInjectionApp.csproj | 1 +
.../StartRequestDelegateUrlApp.csproj | 2 ++
.../StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj | 3 +++
.../StartWithIApplicationBuilderUrlApp.csproj | 1 +
.../Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj | 1 +
.../test/Microsoft.AspNetCore.TestHost.Tests.csproj | 3 ++-
.../Microsoft.AspNetCore.Authentication.Core.Test.csproj | 1 +
.../test/Microsoft.AspNetCore.Http.Extensions.Tests.csproj | 2 ++
.../test/Microsoft.AspNetCore.Http.Results.Tests.csproj | 5 ++++-
.../Microsoft.AspNetCore.Http.Microbenchmarks.csproj | 1 +
src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj | 1 +
src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj | 3 ++-
.../Microsoft.AspNetCore.Routing.Microbenchmarks.csproj | 2 ++
.../UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj | 1 +
src/Http/samples/MinimalSample/MinimalSample.csproj | 1 +
.../Diagnostics.EFCore.FunctionalTests.csproj | 2 ++
...AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj | 3 ++-
.../samples/HttpLogging.Sample/HttpLogging.Sample.csproj | 2 ++
.../samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj | 2 ++
.../test/Microsoft.AspNetCore.HttpLogging.Tests.csproj | 1 +
.../test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj | 7 +++++--
.../Microsoft.AspNetCore.Localization.Routing.Tests.csproj | 1 +
.../Microsoft.AspNetCore.Localization.Tests.csproj | 2 ++
...crosoft.AspNetCore.OutputCaching.Microbenchmarks.csproj | 1 +
.../samples/OutputCachingSample/OutputCachingSample.csproj | 1 +
.../samples/RateLimitingSample/RateLimitingSample.csproj | 2 ++
.../Microsoft.AspNetCore.ResponseCompression.Tests.csproj | 3 ++-
.../Rewrite/test/Microsoft.AspNetCore.Rewrite.Tests.csproj | 1 +
.../Session/test/Microsoft.AspNetCore.Session.Tests.csproj | 6 ++++--
.../Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj | 7 ++++---
.../SimpleWebSiteWithWebApplicationBuilderException.csproj | 2 ++
src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj | 1 +
.../test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj | 6 ++++--
.../Certificate.Optional.Sample.csproj | 2 ++
.../test/Microsoft.AspNetCore.CookiePolicy.Test.csproj | 5 +++--
...rosoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj | 3 +++
.../Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj | 5 +++--
.../Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj | 3 ++-
.../test/Microsoft.AspNetCore.Server.Kestrel.Tests.csproj | 3 +++
...rosoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj | 3 +++
src/Servers/Kestrel/stress/HttpStress.csproj | 6 ++++--
.../InMemory.FunctionalTests.csproj | 4 +++-
.../Interop.FunctionalTests/Interop.FunctionalTests.csproj | 6 ++++--
.../test/Sockets.BindTests/Sockets.BindTests.csproj | 3 +++
52 files changed, 116 insertions(+), 24 deletions(-)
diff --git a/src/Antiforgery/test/Microsoft.AspNetCore.Antiforgery.Test.csproj b/src/Antiforgery/test/Microsoft.AspNetCore.Antiforgery.Test.csproj
index 26533235accb..c7996351c229 100644
--- a/src/Antiforgery/test/Microsoft.AspNetCore.Antiforgery.Test.csproj
+++ b/src/Antiforgery/test/Microsoft.AspNetCore.Antiforgery.Test.csproj
@@ -10,6 +10,7 @@
+
diff --git a/src/Components/Endpoints/test/Microsoft.AspNetCore.Components.Endpoints.Tests.csproj b/src/Components/Endpoints/test/Microsoft.AspNetCore.Components.Endpoints.Tests.csproj
index 3d7bced6b251..f4c851347ee4 100644
--- a/src/Components/Endpoints/test/Microsoft.AspNetCore.Components.Endpoints.Tests.csproj
+++ b/src/Components/Endpoints/test/Microsoft.AspNetCore.Components.Endpoints.Tests.csproj
@@ -12,7 +12,11 @@
+
+
+
+
diff --git a/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj b/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj
index 492893565757..6d023592724d 100644
--- a/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj
+++ b/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj
@@ -21,6 +21,7 @@
+
diff --git a/src/DataProtection/DataProtection/test/Microsoft.AspNetCore.DataProtection.Tests/Microsoft.AspNetCore.DataProtection.Tests.csproj b/src/DataProtection/DataProtection/test/Microsoft.AspNetCore.DataProtection.Tests/Microsoft.AspNetCore.DataProtection.Tests.csproj
index 6b29016dd173..4435d5b85f77 100644
--- a/src/DataProtection/DataProtection/test/Microsoft.AspNetCore.DataProtection.Tests/Microsoft.AspNetCore.DataProtection.Tests.csproj
+++ b/src/DataProtection/DataProtection/test/Microsoft.AspNetCore.DataProtection.Tests/Microsoft.AspNetCore.DataProtection.Tests.csproj
@@ -12,6 +12,7 @@
+
diff --git a/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj b/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj
index e616256aea7d..55b2f684dac5 100644
--- a/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj
+++ b/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj
@@ -6,6 +6,11 @@
OutOfProcess
+
+
+
+
+
diff --git a/src/DefaultBuilder/test/Microsoft.AspNetCore.Tests/Microsoft.AspNetCore.Tests.csproj b/src/DefaultBuilder/test/Microsoft.AspNetCore.Tests/Microsoft.AspNetCore.Tests.csproj
index 2bb59ab8befe..aebccf02f68f 100644
--- a/src/DefaultBuilder/test/Microsoft.AspNetCore.Tests/Microsoft.AspNetCore.Tests.csproj
+++ b/src/DefaultBuilder/test/Microsoft.AspNetCore.Tests/Microsoft.AspNetCore.Tests.csproj
@@ -5,6 +5,11 @@
+
+
+
+
+
diff --git a/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/CreateDefaultBuilderApp.csproj b/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/CreateDefaultBuilderApp.csproj
index 230dfe2f2ddb..38590bf4f926 100644
--- a/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/CreateDefaultBuilderApp.csproj
+++ b/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/CreateDefaultBuilderApp.csproj
@@ -10,6 +10,7 @@
+
diff --git a/src/DefaultBuilder/testassets/CreateDefaultBuilderOfTApp/CreateDefaultBuilderOfTApp.csproj b/src/DefaultBuilder/testassets/CreateDefaultBuilderOfTApp/CreateDefaultBuilderOfTApp.csproj
index 61671a8b2145..0aff8cbc4915 100644
--- a/src/DefaultBuilder/testassets/CreateDefaultBuilderOfTApp/CreateDefaultBuilderOfTApp.csproj
+++ b/src/DefaultBuilder/testassets/CreateDefaultBuilderOfTApp/CreateDefaultBuilderOfTApp.csproj
@@ -7,6 +7,7 @@
+
diff --git a/src/DefaultBuilder/testassets/DependencyInjectionApp/DependencyInjectionApp.csproj b/src/DefaultBuilder/testassets/DependencyInjectionApp/DependencyInjectionApp.csproj
index 81fb60ddab30..6a7fef5e8c3f 100644
--- a/src/DefaultBuilder/testassets/DependencyInjectionApp/DependencyInjectionApp.csproj
+++ b/src/DefaultBuilder/testassets/DependencyInjectionApp/DependencyInjectionApp.csproj
@@ -7,6 +7,7 @@
+
diff --git a/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj b/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj
index 81fb60ddab30..d2fde055ec92 100644
--- a/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj
+++ b/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj
@@ -7,6 +7,8 @@
+
+
diff --git a/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj b/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj
index 81fb60ddab30..82f8e92c143b 100644
--- a/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj
+++ b/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj
@@ -7,6 +7,9 @@
+
+
+
diff --git a/src/DefaultBuilder/testassets/StartWithIApplicationBuilderUrlApp/StartWithIApplicationBuilderUrlApp.csproj b/src/DefaultBuilder/testassets/StartWithIApplicationBuilderUrlApp/StartWithIApplicationBuilderUrlApp.csproj
index 81fb60ddab30..6a7fef5e8c3f 100644
--- a/src/DefaultBuilder/testassets/StartWithIApplicationBuilderUrlApp/StartWithIApplicationBuilderUrlApp.csproj
+++ b/src/DefaultBuilder/testassets/StartWithIApplicationBuilderUrlApp/StartWithIApplicationBuilderUrlApp.csproj
@@ -7,6 +7,7 @@
+
diff --git a/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj b/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
index 9c495c0ff7d0..787497c5f287 100644
--- a/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
+++ b/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
@@ -23,6 +23,7 @@
+
diff --git a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
index 6f03aa0c428f..0f130b09eba1 100644
--- a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
+++ b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
@@ -9,9 +9,10 @@
-
+
+
diff --git a/src/Http/Authentication.Core/test/Microsoft.AspNetCore.Authentication.Core.Test.csproj b/src/Http/Authentication.Core/test/Microsoft.AspNetCore.Authentication.Core.Test.csproj
index 9c7dd0a085dd..6cd0e0bb13e5 100644
--- a/src/Http/Authentication.Core/test/Microsoft.AspNetCore.Authentication.Core.Test.csproj
+++ b/src/Http/Authentication.Core/test/Microsoft.AspNetCore.Authentication.Core.Test.csproj
@@ -6,6 +6,7 @@
+
diff --git a/src/Http/Http.Extensions/test/Microsoft.AspNetCore.Http.Extensions.Tests.csproj b/src/Http/Http.Extensions/test/Microsoft.AspNetCore.Http.Extensions.Tests.csproj
index 1900e5ea3ebb..f0803a1d3210 100644
--- a/src/Http/Http.Extensions/test/Microsoft.AspNetCore.Http.Extensions.Tests.csproj
+++ b/src/Http/Http.Extensions/test/Microsoft.AspNetCore.Http.Extensions.Tests.csproj
@@ -15,6 +15,8 @@
+
+
diff --git a/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj b/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
index 23833a39fd30..081847d2616d 100644
--- a/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
+++ b/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
@@ -5,10 +5,13 @@
+
+
+
-
+
diff --git a/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj b/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj
index 663745c85991..837ebfe8a2dd 100644
--- a/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj
+++ b/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj b/src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj
index f00221095582..3a83b0183329 100644
--- a/src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj
+++ b/src/Http/Http/test/Microsoft.AspNetCore.Http.Tests.csproj
@@ -8,6 +8,7 @@
+
diff --git a/src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj b/src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj
index 3935b4715346..2564eb53dd64 100644
--- a/src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj
+++ b/src/Http/Owin/test/Microsoft.AspNetCore.Owin.Tests.csproj
@@ -5,9 +5,10 @@
+
-
+
diff --git a/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj b/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj
index 38b5901e4fb4..2de9372a9052 100644
--- a/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj
+++ b/src/Http/Routing/perf/Microbenchmarks/Microsoft.AspNetCore.Routing.Microbenchmarks.csproj
@@ -43,7 +43,9 @@
+
+
diff --git a/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj b/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj
index aa169e353bf3..83bfe3ff1e29 100644
--- a/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj
+++ b/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj
@@ -15,6 +15,7 @@
+
diff --git a/src/Http/samples/MinimalSample/MinimalSample.csproj b/src/Http/samples/MinimalSample/MinimalSample.csproj
index f4a02094cafb..0277e3d138a0 100644
--- a/src/Http/samples/MinimalSample/MinimalSample.csproj
+++ b/src/Http/samples/MinimalSample/MinimalSample.csproj
@@ -13,6 +13,7 @@
+
diff --git a/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj b/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj
index 84d7eeb4eae9..2d30a7deb0a8 100644
--- a/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj
+++ b/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/src/Middleware/Diagnostics.EntityFrameworkCore/test/UnitTests/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj b/src/Middleware/Diagnostics.EntityFrameworkCore/test/UnitTests/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj
index 51a8817ea85d..ff7053e63711 100644
--- a/src/Middleware/Diagnostics.EntityFrameworkCore/test/UnitTests/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj
+++ b/src/Middleware/Diagnostics.EntityFrameworkCore/test/UnitTests/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.Tests.csproj
@@ -5,10 +5,11 @@
+
+
-
diff --git a/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj b/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj
index 21b5a022f5a1..36eb4316f7a3 100644
--- a/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj
+++ b/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj
@@ -5,6 +5,8 @@
+
+
diff --git a/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj b/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj
index 82ff6be53ad7..0c23986d0aff 100644
--- a/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj
+++ b/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj
@@ -5,6 +5,8 @@
+
+
diff --git a/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj b/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj
index 2f0a2e2a8559..8c84c6473c22 100644
--- a/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj
+++ b/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj
@@ -10,6 +10,7 @@
+
diff --git a/src/Middleware/HttpOverrides/test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj b/src/Middleware/HttpOverrides/test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj
index bddd7d169d22..ba7d0706e664 100644
--- a/src/Middleware/HttpOverrides/test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj
+++ b/src/Middleware/HttpOverrides/test/Microsoft.AspNetCore.HttpOverrides.Tests.csproj
@@ -6,10 +6,13 @@
+
+
+
+
-
-
+
diff --git a/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj b/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj
index d0654674bf0d..6de1c32d4f70 100644
--- a/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj
+++ b/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj
@@ -5,6 +5,7 @@
+
diff --git a/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj b/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj
index 1d3ea58b9631..75c26e6367fa 100644
--- a/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj
+++ b/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj
@@ -5,6 +5,8 @@
+
+
diff --git a/src/Middleware/OutputCaching/perf/Microbenchmarks/Microsoft.AspNetCore.OutputCaching.Microbenchmarks.csproj b/src/Middleware/OutputCaching/perf/Microbenchmarks/Microsoft.AspNetCore.OutputCaching.Microbenchmarks.csproj
index 559d372cd7cc..056c275abd25 100644
--- a/src/Middleware/OutputCaching/perf/Microbenchmarks/Microsoft.AspNetCore.OutputCaching.Microbenchmarks.csproj
+++ b/src/Middleware/OutputCaching/perf/Microbenchmarks/Microsoft.AspNetCore.OutputCaching.Microbenchmarks.csproj
@@ -9,6 +9,7 @@
+
diff --git a/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj b/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj
index 8e76982e4dfc..45e9ccd73d55 100644
--- a/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj
+++ b/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj
@@ -7,6 +7,7 @@
+
diff --git a/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj b/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj
index ccaaeb89b723..11d8d7798649 100644
--- a/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj
+++ b/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj
@@ -9,8 +9,10 @@
+
+
diff --git a/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj b/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj
index ee820fa9be24..84c0ebb6ae38 100644
--- a/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj
+++ b/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj
@@ -9,9 +9,10 @@
+
-
+
diff --git a/src/Middleware/Rewrite/test/Microsoft.AspNetCore.Rewrite.Tests.csproj b/src/Middleware/Rewrite/test/Microsoft.AspNetCore.Rewrite.Tests.csproj
index f62c4140b7f1..01469717697e 100644
--- a/src/Middleware/Rewrite/test/Microsoft.AspNetCore.Rewrite.Tests.csproj
+++ b/src/Middleware/Rewrite/test/Microsoft.AspNetCore.Rewrite.Tests.csproj
@@ -5,6 +5,7 @@
+
diff --git a/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj b/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj
index 0c45d3269a8a..d9dff6f05d25 100644
--- a/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj
+++ b/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj
@@ -5,11 +5,13 @@
+
+
+
-
-
+
diff --git a/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj b/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj
index 713dfa82abc0..bb176c6dcd2d 100644
--- a/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj
+++ b/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj
@@ -6,12 +6,13 @@
+
+
+
-
-
-
+
diff --git a/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj b/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj
index b98dad5ccb6f..1664ee633666 100644
--- a/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj
+++ b/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj
@@ -7,5 +7,7 @@
+
+
diff --git a/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj b/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
index 18956b94b79d..ab45407df1e9 100644
--- a/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
+++ b/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
@@ -21,6 +21,7 @@
+
diff --git a/src/Razor/Razor.Runtime/test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj b/src/Razor/Razor.Runtime/test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj
index 0106f69ff4c2..f2cee1f743b2 100644
--- a/src/Razor/Razor.Runtime/test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj
+++ b/src/Razor/Razor.Runtime/test/Microsoft.AspNetCore.Razor.Runtime.Test.csproj
@@ -14,9 +14,11 @@
-
-
+
+
+
+
diff --git a/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj b/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj
index c89c416ab8d6..3cc6a9564434 100644
--- a/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj
+++ b/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj
@@ -11,6 +11,8 @@
+
+
diff --git a/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj b/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj
index a8702f9df372..5a2f5a967ac6 100644
--- a/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj
+++ b/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj
@@ -11,9 +11,10 @@
-
-
+
+
+
diff --git a/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj b/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
index bcf276805c70..3d7843bed114 100644
--- a/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
+++ b/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
@@ -28,6 +28,9 @@
+
+
+
diff --git a/src/Servers/HttpSys/test/Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj b/src/Servers/HttpSys/test/Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj
index de5cbdc3bc94..f57daac01115 100644
--- a/src/Servers/HttpSys/test/Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj
+++ b/src/Servers/HttpSys/test/Tests/Microsoft.AspNetCore.Server.HttpSys.Tests.csproj
@@ -6,9 +6,10 @@
-
-
+
+
+
diff --git a/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj b/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj
index 8d4d01d197ea..1649a41044a1 100644
--- a/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj
+++ b/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj
@@ -23,9 +23,10 @@
+
+
-
diff --git a/src/Servers/Kestrel/Kestrel/test/Microsoft.AspNetCore.Server.Kestrel.Tests.csproj b/src/Servers/Kestrel/Kestrel/test/Microsoft.AspNetCore.Server.Kestrel.Tests.csproj
index 301d784d9e6d..55293c748cae 100644
--- a/src/Servers/Kestrel/Kestrel/test/Microsoft.AspNetCore.Server.Kestrel.Tests.csproj
+++ b/src/Servers/Kestrel/Kestrel/test/Microsoft.AspNetCore.Server.Kestrel.Tests.csproj
@@ -21,7 +21,10 @@
+
+
+
diff --git a/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj b/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj
index cf7a79de1380..fc6cd4ab0413 100644
--- a/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj
+++ b/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj
@@ -36,7 +36,10 @@
+
+
+
diff --git a/src/Servers/Kestrel/stress/HttpStress.csproj b/src/Servers/Kestrel/stress/HttpStress.csproj
index 864bc6103421..779752537d5e 100644
--- a/src/Servers/Kestrel/stress/HttpStress.csproj
+++ b/src/Servers/Kestrel/stress/HttpStress.csproj
@@ -7,13 +7,15 @@
-
-
+
+
+
+
diff --git a/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj b/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj
index a0937f2b0381..54a0be6b5b7c 100644
--- a/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj
+++ b/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj
@@ -33,9 +33,11 @@
-
+
+
+
diff --git a/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj b/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj
index 6f7d97f73ab8..ed0f1a6bf41f 100644
--- a/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj
+++ b/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj
@@ -31,10 +31,12 @@
-
-
+
+
+
+
diff --git a/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj b/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj
index 7b39c2ac145b..931a2fa641f2 100644
--- a/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj
+++ b/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj
@@ -25,7 +25,10 @@
+
+
+
From bedaa35cf92e85bf770d09429d2268817169eb84 Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 15:03:53 +0000
Subject: [PATCH 34/37] Fix CS0012/CS0246 compilation errors.
---
...crosoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj | 3 ++-
src/Http/samples/SampleApp/HttpAbstractions.SampleApp.csproj | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/Http/Http.Abstractions/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj b/src/Http/Http.Abstractions/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj
index 1dc0f711fe0a..cf563c21098c 100644
--- a/src/Http/Http.Abstractions/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj
+++ b/src/Http/Http.Abstractions/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj
@@ -7,9 +7,10 @@
-
+
+
diff --git a/src/Http/samples/SampleApp/HttpAbstractions.SampleApp.csproj b/src/Http/samples/SampleApp/HttpAbstractions.SampleApp.csproj
index d9cb82b9110f..0db96bb15383 100644
--- a/src/Http/samples/SampleApp/HttpAbstractions.SampleApp.csproj
+++ b/src/Http/samples/SampleApp/HttpAbstractions.SampleApp.csproj
@@ -6,10 +6,11 @@
+
-
+
From a1ade560e421d5f12e5e4a77bd8997fcd050ae6e Mon Sep 17 00:00:00 2001
From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Date: Fri, 12 Dec 2025 16:56:41 +0000
Subject: [PATCH 35/37] Fix CS compilation errors partially.
---
....AspNetCore.Components.Endpoints.Tests.csproj | 3 +++
...Microsoft.AspNetCore.Components.Server.csproj | 2 ++
...re.Components.WebAssembly.Server.Tests.csproj | 5 +++++
.../Driver/Wasm.Performance.Driver.csproj | 7 ++++++-
.../SampleApp/DefaultBuilder.SampleApp.csproj | 3 ++-
.../Microsoft.AspNetCore.Tests.csproj | 12 +++++++-----
.../CreateDefaultBuilderApp.csproj | 5 ++++-
.../CreateDefaultBuilderOfTApp.csproj | 4 +++-
.../DependencyInjectionApp.csproj | 3 +++
.../StartRequestDelegateUrlApp.csproj | 4 +++-
.../StartRouteBuilderUrlApp.csproj | 4 +++-
.../StartWithIApplicationBuilderUrlApp.csproj | 2 ++
.../Microsoft.AspNetCore.Hosting.Tests.csproj | 10 +++++++---
.../Microsoft.AspNetCore.TestHost.Tests.csproj | 6 ++++--
...pNetCore.Hosting.WindowsServices.Tests.csproj | 4 +++-
.../BasicLinkedApp/BasicLinkedApp.csproj | 4 +++-
...Microsoft.AspNetCore.Hosting.TestSites.csproj | 3 +++
...oft.AspNetCore.Http.Abstractions.Tests.csproj | 6 +++++-
...osoft.AspNetCore.Http.Extensions.Tests.csproj | 5 +++--
...icrosoft.AspNetCore.Http.Results.Tests.csproj | 3 +++
...rosoft.AspNetCore.Http.Microbenchmarks.csproj | 7 +++++--
...rosoft.AspNetCore.Owin.Microbenchmarks.csproj | 3 ++-
.../Microsoft.AspNetCore.Routing.Tests.csproj | 8 +++++---
.../test/testassets/Benchmarks/Benchmarks.csproj | 9 ++++++---
.../RoutingSandbox/RoutingSandbox.csproj | 9 ++++++---
.../RoutingWebSite/RoutingWebSite.csproj | 9 ++++++---
.../samples/MinimalSample/MinimalSample.csproj | 3 +++
.../MinimalSampleOwin/MinimalSampleOwin.csproj | 5 +++++
.../MinimalValidationSample.csproj | 5 ++++-
.../src/Microsoft.AspNetCore.Identity.csproj | 6 ++++--
.../CorsMiddlewareWebSite.csproj | 5 ++++-
.../Diagnostics.EFCore.FunctionalTests.csproj | 6 ++++--
...Microsoft.AspNetCore.Diagnostics.Tests.csproj | 3 +++
.../DatabaseErrorPageSample.csproj | 8 ++++----
.../DeveloperExceptionPageSample.csproj | 8 ++++----
.../ExceptionHandlerSample.csproj | 6 ++++--
.../StatusCodePagesSample.csproj | 5 ++++-
.../WelcomePageSample/WelcomePageSample.csproj | 5 ++++-
.../HeaderPropagationSample.csproj | 4 +++-
...oft.AspNetCore.HeaderPropagation.Tests.csproj | 8 +++++---
.../HealthChecksSample/HealthChecksSample.csproj | 6 +++++-
.../sample/HostFilteringSample.csproj | 5 ++++-
...crosoft.AspNetCore.HostFiltering.Tests.csproj | 6 ++++--
.../HttpLogging.Sample/HttpLogging.Sample.csproj | 10 ++++++----
.../Logging.W3C.Sample/Logging.W3C.Sample.csproj | 8 +++++---
...Microsoft.AspNetCore.HttpLogging.Tests.csproj | 8 +++++---
.../sample/HttpOverridesSample.csproj | 7 +++++--
.../HttpsPolicy/sample/HttpsPolicySample.csproj | 9 ++++++---
...Microsoft.AspNetCore.HttpsPolicy.Tests.csproj | 6 ++++--
....AspNetCore.Localization.Routing.Tests.csproj | 5 +++++
.../sample/LocalizationSample.csproj | 7 +++++--
...icrosoft.AspNetCore.Localization.Tests.csproj | 6 ++++--
.../LocalizationWebsite.csproj | 9 ++++++---
...OutputCaching.StackExchangeRedis.Tests.csproj | 8 ++++++--
.../MiddlewareAnalysisSample.csproj | 7 +++++--
...ft.AspNetCore.MiddlewareAnalysis.Tests.csproj | 7 +++++--
.../OutputCachingSample.csproj | 4 ++++
...crosoft.AspNetCore.OutputCaching.Tests.csproj | 6 ++++--
.../RateLimitingSample/RateLimitingSample.csproj | 5 ++++-
.../sample/RequestDecompressionSample.csproj | 7 +++++--
....AspNetCore.RequestDecompression.Tests.csproj | 4 +++-
.../ResponseCachingSample.csproj | 7 +++++--
...osoft.AspNetCore.ResponseCaching.Tests.csproj | 6 ++++--
.../sample/ResponseCompressionSample.csproj | 7 +++++--
...t.AspNetCore.ResponseCompression.Tests.csproj | 1 +
.../Rewrite/sample/RewriteSample.csproj | 7 +++++--
.../Microsoft.AspNetCore.Rewrite.Tests.csproj | 4 +++-
.../Session/samples/SessionSample.csproj | 7 +++++--
.../Microsoft.AspNetCore.Session.Tests.csproj | 1 +
...spNetCore.SpaServices.Extensions.Tests.csproj | 5 +++--
.../StaticFileSample/StaticFileSample.csproj | 11 +++++++----
...AspNetCore.StaticFiles.FunctionalTests.csproj | 4 +++-
...Microsoft.AspNetCore.StaticFiles.Tests.csproj | 6 ++++--
.../AutobahnTestApp/AutobahnTestApp.csproj | 5 ++++-
.../Microsoft.AspNetCore.WebSockets.Tests.csproj | 6 ++++--
...icrosoft.AspNetCore.Mvc.NewtonsoftJson.csproj | 3 ++-
.../src/Microsoft.AspNetCore.Mvc.Razor.csproj | 2 ++
...crosoft.AspNetCore.Mvc.Core.TestCommon.csproj | 4 +++-
...SiteWithWebApplicationBuilderException.csproj | 4 ++++
.../src/Microsoft.AspNetCore.OpenApi.csproj | 3 +++
.../test/Microsoft.AspNetCore.Razor.Test.csproj | 7 +++++--
.../Certificate.Optional.Sample.csproj | 2 ++
.../Certificate.Sample/Certificate.Sample.csproj | 4 ++++
.../samples/CookieSample/CookieSample.csproj | 5 +++++
.../CookieSessionSample.csproj | 5 ++++-
.../JwtBearerSample/JwtBearerSample.csproj | 5 +++++
.../MinimalJwtBearerSample.csproj | 6 ++++++
.../NegotiateAuthSample.csproj | 4 ++++
...uthentication.Negotiate.FunctionalTest.csproj | 4 ++++
...pNetCore.Authentication.Negotiate.Test.csproj | 5 ++++-
.../MinimalOpenIdConnectSample.csproj | 6 ++++++
.../OpenIdConnectSample.csproj | 7 ++++++-
.../samples/WsFedSample/WsFedSample.csproj | 7 +++++--
.../samples/SocialSample/SocialSample.csproj | 8 ++++++++
...crosoft.AspNetCore.Authentication.Test.csproj | 4 ++++
...icrosoft.AspNetCore.Authorization.Test.csproj | 4 ++++
.../CookiePolicySample/CookiePolicySample.csproj | 7 +++++--
...Microsoft.AspNetCore.CookiePolicy.Test.csproj | 1 +
...ft.AspNetCore.Security.Microbenchmarks.csproj | 6 ++++--
.../samples/HotAddSample/HotAddSample.csproj | 6 ++++--
.../samples/QueueSharing/QueueSharing.csproj | 5 +++--
.../samples/SelfHostServer/SelfHostServer.csproj | 5 +++--
.../TlsFeaturesObserve/TlsFeaturesObserve.csproj | 4 ++++
...NetCore.Server.HttpSys.FunctionalTests.csproj | 4 +++-
.../DelegationSite/DelegationSite.csproj | 5 +++--
.../NativeIISSample/NativeIISSample.csproj | 3 +++
.../IIS.NewShim.FunctionalTests.csproj | 3 +++
.../IIS/IIS/test/IIS.Tests/IIS.Tests.csproj | 2 ++
.../InProcessWebSite/InProcessWebSite.csproj | 5 ++++-
.../samples/IISSample/IISSample.csproj | 7 +++++--
...AspNetCore.Server.IISIntegration.Tests.csproj | 8 +++++---
...t.AspNetCore.Server.Kestrel.Core.Tests.csproj | 1 +
...rosoft.AspNetCore.Server.Kestrel.Tests.csproj | 2 ++
...ver.Kestrel.Transport.NamedPipes.Tests.csproj | 6 ++++--
...re.Server.Kestrel.Transport.Quic.Tests.csproj | 6 ++++--
...NetCore.Server.Kestrel.Microbenchmarks.csproj | 8 +++++---
.../samples/Http2SampleApp/Http2SampleApp.csproj | 7 +++++--
.../samples/Http3SampleApp/Http3SampleApp.csproj | 10 ++++++----
.../LargeResponseApp/LargeResponseApp.csproj | 7 +++++--
.../samples/PlaintextApp/PlaintextApp.csproj | 7 +++++--
.../samples/SampleApp/Kestrel.SampleApp.csproj | 7 +++++--
.../samples/SystemdTestApp/SystemdTestApp.csproj | 7 +++++--
.../WebTransportInteractiveSampleApp.csproj | 5 +++++
.../WebTransportSampleApp.csproj | 7 +++++--
.../Kestrel/samples/http2cat/http2cat.csproj | 10 ++++++----
src/Servers/Kestrel/stress/HttpStress.csproj | 3 +++
.../InMemory.FunctionalTests.csproj | 2 ++
.../Interop.FunctionalTests.csproj | 5 +++--
.../Sockets.BindTests/Sockets.BindTests.csproj | 4 ++--
.../Sockets.FunctionalTests.csproj | 6 ++++--
.../ServerComparison.TestSites.csproj | 5 +++++
.../SignalR.Client.FunctionalTestApp.csproj | 7 ++++++-
...crosoft.AspNetCore.SignalR.Tests.Utils.csproj | 7 +++++--
src/SignalR/samples/JwtSample/JwtSample.csproj | 7 ++++++-
.../samples/SignalRSamples/SignalRSamples.csproj | 5 ++++-
.../samples/SocialWeather/SocialWeather.csproj | 7 +++++--
...icrosoft.AspNetCore.StaticAssets.Tests.csproj | 5 +++++
.../test/dotnet-user-jwts.Tests.csproj | 5 +++++
...t.Extensions.Validation.GeneratorTests.csproj | 16 +++++++++-------
139 files changed, 582 insertions(+), 196 deletions(-)
diff --git a/src/Components/Endpoints/test/Microsoft.AspNetCore.Components.Endpoints.Tests.csproj b/src/Components/Endpoints/test/Microsoft.AspNetCore.Components.Endpoints.Tests.csproj
index f4c851347ee4..ee041298bc33 100644
--- a/src/Components/Endpoints/test/Microsoft.AspNetCore.Components.Endpoints.Tests.csproj
+++ b/src/Components/Endpoints/test/Microsoft.AspNetCore.Components.Endpoints.Tests.csproj
@@ -13,10 +13,13 @@
+
+
+
diff --git a/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj b/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj
index 6d023592724d..867e25fe4060 100644
--- a/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj
+++ b/src/Components/Server/src/Microsoft.AspNetCore.Components.Server.csproj
@@ -24,9 +24,11 @@
+
+
diff --git a/src/Components/WebAssembly/Server/test/Microsoft.AspNetCore.Components.WebAssembly.Server.Tests.csproj b/src/Components/WebAssembly/Server/test/Microsoft.AspNetCore.Components.WebAssembly.Server.Tests.csproj
index 292ec82b5d4a..6d2fa4a731bb 100644
--- a/src/Components/WebAssembly/Server/test/Microsoft.AspNetCore.Components.WebAssembly.Server.Tests.csproj
+++ b/src/Components/WebAssembly/Server/test/Microsoft.AspNetCore.Components.WebAssembly.Server.Tests.csproj
@@ -5,8 +5,13 @@
+
+
+
+
+
diff --git a/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj b/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj
index 99555fccda38..f761a09e1bff 100644
--- a/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj
+++ b/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj
@@ -13,8 +13,13 @@
-
+
+
+
+
+
+
diff --git a/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj b/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj
index 55b2f684dac5..c4c8568b2794 100644
--- a/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj
+++ b/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj
@@ -7,8 +7,9 @@
-
+
+
diff --git a/src/DefaultBuilder/test/Microsoft.AspNetCore.Tests/Microsoft.AspNetCore.Tests.csproj b/src/DefaultBuilder/test/Microsoft.AspNetCore.Tests/Microsoft.AspNetCore.Tests.csproj
index aebccf02f68f..decfac2b69f7 100644
--- a/src/DefaultBuilder/test/Microsoft.AspNetCore.Tests/Microsoft.AspNetCore.Tests.csproj
+++ b/src/DefaultBuilder/test/Microsoft.AspNetCore.Tests/Microsoft.AspNetCore.Tests.csproj
@@ -5,14 +5,16 @@
-
-
-
-
+
+
+
+
+
+
-
+
diff --git a/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/CreateDefaultBuilderApp.csproj b/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/CreateDefaultBuilderApp.csproj
index 38590bf4f926..8940c0f71656 100644
--- a/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/CreateDefaultBuilderApp.csproj
+++ b/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/CreateDefaultBuilderApp.csproj
@@ -10,8 +10,11 @@
-
+
+
+
+
diff --git a/src/DefaultBuilder/testassets/CreateDefaultBuilderOfTApp/CreateDefaultBuilderOfTApp.csproj b/src/DefaultBuilder/testassets/CreateDefaultBuilderOfTApp/CreateDefaultBuilderOfTApp.csproj
index 0aff8cbc4915..147408324575 100644
--- a/src/DefaultBuilder/testassets/CreateDefaultBuilderOfTApp/CreateDefaultBuilderOfTApp.csproj
+++ b/src/DefaultBuilder/testassets/CreateDefaultBuilderOfTApp/CreateDefaultBuilderOfTApp.csproj
@@ -7,8 +7,10 @@
-
+
+
+
diff --git a/src/DefaultBuilder/testassets/DependencyInjectionApp/DependencyInjectionApp.csproj b/src/DefaultBuilder/testassets/DependencyInjectionApp/DependencyInjectionApp.csproj
index 6a7fef5e8c3f..935cad377198 100644
--- a/src/DefaultBuilder/testassets/DependencyInjectionApp/DependencyInjectionApp.csproj
+++ b/src/DefaultBuilder/testassets/DependencyInjectionApp/DependencyInjectionApp.csproj
@@ -7,7 +7,10 @@
+
+
+
diff --git a/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj b/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj
index d2fde055ec92..ca8fb00ab88f 100644
--- a/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj
+++ b/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj
@@ -7,8 +7,10 @@
-
+
+
+
diff --git a/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj b/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj
index 82f8e92c143b..914cf1966ebe 100644
--- a/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj
+++ b/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj
@@ -7,9 +7,11 @@
-
+
+
+
diff --git a/src/DefaultBuilder/testassets/StartWithIApplicationBuilderUrlApp/StartWithIApplicationBuilderUrlApp.csproj b/src/DefaultBuilder/testassets/StartWithIApplicationBuilderUrlApp/StartWithIApplicationBuilderUrlApp.csproj
index 6a7fef5e8c3f..a3548d2ca09d 100644
--- a/src/DefaultBuilder/testassets/StartWithIApplicationBuilderUrlApp/StartWithIApplicationBuilderUrlApp.csproj
+++ b/src/DefaultBuilder/testassets/StartWithIApplicationBuilderUrlApp/StartWithIApplicationBuilderUrlApp.csproj
@@ -7,7 +7,9 @@
+
+
diff --git a/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj b/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
index 787497c5f287..f286da1b309d 100644
--- a/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
+++ b/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
@@ -21,14 +21,18 @@
-
-
+
+
+
+
-
+
+
+
diff --git a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
index 0f130b09eba1..b870a6572e42 100644
--- a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
+++ b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
@@ -9,13 +9,15 @@
+
+
+
-
-
+
diff --git a/src/Hosting/WindowsServices/test/Microsoft.AspNetCore.Hosting.WindowsServices.Tests.csproj b/src/Hosting/WindowsServices/test/Microsoft.AspNetCore.Hosting.WindowsServices.Tests.csproj
index 1d17f974ba29..b65ac20bd5e1 100644
--- a/src/Hosting/WindowsServices/test/Microsoft.AspNetCore.Hosting.WindowsServices.Tests.csproj
+++ b/src/Hosting/WindowsServices/test/Microsoft.AspNetCore.Hosting.WindowsServices.Tests.csproj
@@ -7,8 +7,10 @@
-
+
+
+
diff --git a/src/Hosting/test/testassets/BasicLinkedApp/BasicLinkedApp.csproj b/src/Hosting/test/testassets/BasicLinkedApp/BasicLinkedApp.csproj
index d6cbabb0c159..8324cdf15fe2 100644
--- a/src/Hosting/test/testassets/BasicLinkedApp/BasicLinkedApp.csproj
+++ b/src/Hosting/test/testassets/BasicLinkedApp/BasicLinkedApp.csproj
@@ -13,9 +13,11 @@
+
-
+
+
diff --git a/src/Hosting/test/testassets/Microsoft.AspNetCore.Hosting.TestSites/Microsoft.AspNetCore.Hosting.TestSites.csproj b/src/Hosting/test/testassets/Microsoft.AspNetCore.Hosting.TestSites/Microsoft.AspNetCore.Hosting.TestSites.csproj
index 0bf6fc2308b7..df6290d9f569 100644
--- a/src/Hosting/test/testassets/Microsoft.AspNetCore.Hosting.TestSites/Microsoft.AspNetCore.Hosting.TestSites.csproj
+++ b/src/Hosting/test/testassets/Microsoft.AspNetCore.Hosting.TestSites/Microsoft.AspNetCore.Hosting.TestSites.csproj
@@ -8,10 +8,13 @@
+
+
+
diff --git a/src/Http/Http.Abstractions/test/Microsoft.AspNetCore.Http.Abstractions.Tests.csproj b/src/Http/Http.Abstractions/test/Microsoft.AspNetCore.Http.Abstractions.Tests.csproj
index 640ec134d744..2efcd842972e 100644
--- a/src/Http/Http.Abstractions/test/Microsoft.AspNetCore.Http.Abstractions.Tests.csproj
+++ b/src/Http/Http.Abstractions/test/Microsoft.AspNetCore.Http.Abstractions.Tests.csproj
@@ -11,11 +11,15 @@
+
+
+
-
+
+
diff --git a/src/Http/Http.Extensions/test/Microsoft.AspNetCore.Http.Extensions.Tests.csproj b/src/Http/Http.Extensions/test/Microsoft.AspNetCore.Http.Extensions.Tests.csproj
index f0803a1d3210..e930fc33113a 100644
--- a/src/Http/Http.Extensions/test/Microsoft.AspNetCore.Http.Extensions.Tests.csproj
+++ b/src/Http/Http.Extensions/test/Microsoft.AspNetCore.Http.Extensions.Tests.csproj
@@ -16,15 +16,16 @@
+
-
-
+
+
diff --git a/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj b/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
index 081847d2616d..48eb25b6723d 100644
--- a/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
+++ b/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
@@ -7,12 +7,15 @@
+
+
+
diff --git a/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj b/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj
index 837ebfe8a2dd..7a3bf71209ce 100644
--- a/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj
+++ b/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj
@@ -12,14 +12,17 @@
-
+
-
+
+
+
+
diff --git a/src/Http/Owin/benchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks.csproj b/src/Http/Owin/benchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks.csproj
index 7ccda5caa031..5753cd388c5d 100644
--- a/src/Http/Owin/benchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks.csproj
+++ b/src/Http/Owin/benchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks.csproj
@@ -7,9 +7,10 @@
+
-
+
diff --git a/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj b/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj
index 83bfe3ff1e29..58f994e45f22 100644
--- a/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj
+++ b/src/Http/Routing/test/UnitTests/Microsoft.AspNetCore.Routing.Tests.csproj
@@ -9,15 +9,17 @@
-
-
+
+
+
+
-
+
diff --git a/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj b/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj
index c65bc3e75b67..ba77716a086b 100644
--- a/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj
+++ b/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj
@@ -6,12 +6,15 @@
-
-
-
+
+
+
+
+
+
diff --git a/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj b/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj
index 72983c9b1770..97815c4046f0 100644
--- a/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj
+++ b/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj
@@ -5,13 +5,16 @@
-
-
-
+
+
+
+
+
+
diff --git a/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj b/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj
index 72983c9b1770..97815c4046f0 100644
--- a/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj
+++ b/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj
@@ -5,13 +5,16 @@
-
-
-
+
+
+
+
+
+
diff --git a/src/Http/samples/MinimalSample/MinimalSample.csproj b/src/Http/samples/MinimalSample/MinimalSample.csproj
index 0277e3d138a0..90cfc2a1ecba 100644
--- a/src/Http/samples/MinimalSample/MinimalSample.csproj
+++ b/src/Http/samples/MinimalSample/MinimalSample.csproj
@@ -10,6 +10,7 @@
+
@@ -17,6 +18,8 @@
+
+
diff --git a/src/Http/samples/MinimalSampleOwin/MinimalSampleOwin.csproj b/src/Http/samples/MinimalSampleOwin/MinimalSampleOwin.csproj
index b9b4ede801fe..e37bba47d0ba 100644
--- a/src/Http/samples/MinimalSampleOwin/MinimalSampleOwin.csproj
+++ b/src/Http/samples/MinimalSampleOwin/MinimalSampleOwin.csproj
@@ -10,11 +10,16 @@
+
+
+
+
+
diff --git a/src/Http/samples/MinimalValidationSample/MinimalValidationSample.csproj b/src/Http/samples/MinimalValidationSample/MinimalValidationSample.csproj
index e01722e04559..1f55e6b1e232 100644
--- a/src/Http/samples/MinimalValidationSample/MinimalValidationSample.csproj
+++ b/src/Http/samples/MinimalValidationSample/MinimalValidationSample.csproj
@@ -9,14 +9,17 @@
+
+
-
+
+
diff --git a/src/Identity/Core/src/Microsoft.AspNetCore.Identity.csproj b/src/Identity/Core/src/Microsoft.AspNetCore.Identity.csproj
index 4f11979ca661..2c49dcd4a779 100644
--- a/src/Identity/Core/src/Microsoft.AspNetCore.Identity.csproj
+++ b/src/Identity/Core/src/Microsoft.AspNetCore.Identity.csproj
@@ -20,17 +20,19 @@
-
-
+
+
+
+
diff --git a/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj b/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj
index af1727d55feb..ded92c664328 100644
--- a/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj
+++ b/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj
@@ -5,11 +5,14 @@
+
-
+
+
+
diff --git a/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj b/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj
index 2d30a7deb0a8..3dee8015006a 100644
--- a/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj
+++ b/src/Middleware/Diagnostics.EntityFrameworkCore/test/FunctionalTests/Diagnostics.EFCore.FunctionalTests.csproj
@@ -9,11 +9,13 @@
+
-
-
+
+
+
diff --git a/src/Middleware/Diagnostics/test/UnitTests/Microsoft.AspNetCore.Diagnostics.Tests.csproj b/src/Middleware/Diagnostics/test/UnitTests/Microsoft.AspNetCore.Diagnostics.Tests.csproj
index 8c937402d4e2..de16b3823c46 100644
--- a/src/Middleware/Diagnostics/test/UnitTests/Microsoft.AspNetCore.Diagnostics.Tests.csproj
+++ b/src/Middleware/Diagnostics/test/UnitTests/Microsoft.AspNetCore.Diagnostics.Tests.csproj
@@ -18,6 +18,9 @@
+
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj b/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj
index e4549070ae9f..6efd7d29dde5 100644
--- a/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj
@@ -5,16 +5,16 @@
+
-
-
-
-
+
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj b/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj
index c90c162df273..a2029ac5c56d 100644
--- a/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj
@@ -5,15 +5,15 @@
+
-
-
-
-
+
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj b/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj
index 97c718f57ec1..3c005e0174cd 100644
--- a/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj
@@ -5,13 +5,15 @@
+
-
-
+
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj b/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj
index 76c297ee8b8c..23a3b543bc04 100644
--- a/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj
@@ -5,11 +5,14 @@
+
-
+
+
+
diff --git a/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj b/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj
index fb3417f02342..120208f15565 100644
--- a/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj
@@ -5,11 +5,14 @@
+
-
+
+
+
diff --git a/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj b/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj
index 8f495851db7a..198b85688c36 100644
--- a/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj
+++ b/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj
@@ -5,11 +5,13 @@
+
-
+
+
diff --git a/src/Middleware/HeaderPropagation/test/Microsoft.AspNetCore.HeaderPropagation.Tests.csproj b/src/Middleware/HeaderPropagation/test/Microsoft.AspNetCore.HeaderPropagation.Tests.csproj
index 341188c70f85..89f12521b308 100644
--- a/src/Middleware/HeaderPropagation/test/Microsoft.AspNetCore.HeaderPropagation.Tests.csproj
+++ b/src/Middleware/HeaderPropagation/test/Microsoft.AspNetCore.HeaderPropagation.Tests.csproj
@@ -5,11 +5,13 @@
-
-
-
+
+
+
+
+
diff --git a/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj b/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj
index 2f3f0b15d682..eee5608af87c 100644
--- a/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj
+++ b/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj
@@ -5,16 +5,20 @@
+
-
+
+
+
+
diff --git a/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj b/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj
index 4923965e27ec..ef43d033104f 100644
--- a/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj
+++ b/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj
@@ -5,11 +5,14 @@
+
+
-
+
+
diff --git a/src/Middleware/HostFiltering/test/Microsoft.AspNetCore.HostFiltering.Tests.csproj b/src/Middleware/HostFiltering/test/Microsoft.AspNetCore.HostFiltering.Tests.csproj
index 765296756a9a..51c0e78cf6e2 100644
--- a/src/Middleware/HostFiltering/test/Microsoft.AspNetCore.HostFiltering.Tests.csproj
+++ b/src/Middleware/HostFiltering/test/Microsoft.AspNetCore.HostFiltering.Tests.csproj
@@ -5,10 +5,12 @@
+
-
-
+
+
+
diff --git a/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj b/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj
index 36eb4316f7a3..60b33f09fbcb 100644
--- a/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj
+++ b/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj
@@ -5,14 +5,16 @@
+
+
-
-
-
-
+
+
+
+
diff --git a/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj b/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj
index 0c23986d0aff..e1a318edf68d 100644
--- a/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj
+++ b/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj
@@ -5,12 +5,14 @@
+
+
-
-
-
+
+
+
diff --git a/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj b/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj
index 8c84c6473c22..6a0e698486b6 100644
--- a/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj
+++ b/src/Middleware/HttpLogging/test/Microsoft.AspNetCore.HttpLogging.Tests.csproj
@@ -5,12 +5,14 @@
-
-
-
+
+
+
+
+
diff --git a/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj b/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj
index 74db7e842c96..fccbd13b64ab 100644
--- a/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj
+++ b/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj
@@ -5,10 +5,13 @@
-
-
+
+
+
+
+
diff --git a/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj b/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj
index d41d069bc86e..a16232c60815 100644
--- a/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj
+++ b/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj
@@ -5,11 +5,14 @@
-
-
+
-
+
+
+
+
+
diff --git a/src/Middleware/HttpsPolicy/test/Microsoft.AspNetCore.HttpsPolicy.Tests.csproj b/src/Middleware/HttpsPolicy/test/Microsoft.AspNetCore.HttpsPolicy.Tests.csproj
index fcf23f9b566b..d50e3f9c435d 100644
--- a/src/Middleware/HttpsPolicy/test/Microsoft.AspNetCore.HttpsPolicy.Tests.csproj
+++ b/src/Middleware/HttpsPolicy/test/Microsoft.AspNetCore.HttpsPolicy.Tests.csproj
@@ -5,10 +5,12 @@
+
+
+
-
-
+
diff --git a/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj b/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj
index 6de1c32d4f70..627f42fe7acd 100644
--- a/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj
+++ b/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj
@@ -5,10 +5,15 @@
+
+
+
+
+
diff --git a/src/Middleware/Localization/sample/LocalizationSample.csproj b/src/Middleware/Localization/sample/LocalizationSample.csproj
index fd63009fd7ed..75245eccd890 100644
--- a/src/Middleware/Localization/sample/LocalizationSample.csproj
+++ b/src/Middleware/Localization/sample/LocalizationSample.csproj
@@ -8,12 +8,15 @@
-
-
+
+
+
+
+
diff --git a/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj b/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj
index 75c26e6367fa..34232ab45097 100644
--- a/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj
+++ b/src/Middleware/Localization/test/UnitTests/Microsoft.AspNetCore.Localization.Tests.csproj
@@ -6,12 +6,14 @@
+
+
+
-
-
+
diff --git a/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj b/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj
index ffdeb9ae7d30..802f1342a415 100644
--- a/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj
+++ b/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj
@@ -10,12 +10,15 @@
-
-
+
-
+
+
+
+
+
diff --git a/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj b/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj
index c86e222de56f..7e098890f962 100644
--- a/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj
+++ b/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj
@@ -4,10 +4,14 @@
+
+
+
+
+
-
-
+
diff --git a/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj b/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj
index f6808ceaebf2..0efd9b91c67a 100644
--- a/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj
+++ b/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj
@@ -5,13 +5,16 @@
+
-
-
+
+
+
+
diff --git a/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj b/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj
index 2a90437fd2df..ebc64e34538c 100644
--- a/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj
+++ b/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj
@@ -5,13 +5,16 @@
+
+
+
+
-
-
+
diff --git a/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj b/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj
index 45e9ccd73d55..7c26f49e72a8 100644
--- a/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj
+++ b/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj
@@ -7,9 +7,13 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/Middleware/OutputCaching/test/Microsoft.AspNetCore.OutputCaching.Tests.csproj b/src/Middleware/OutputCaching/test/Microsoft.AspNetCore.OutputCaching.Tests.csproj
index 1ca49aa8472b..ff4b1007b026 100644
--- a/src/Middleware/OutputCaching/test/Microsoft.AspNetCore.OutputCaching.Tests.csproj
+++ b/src/Middleware/OutputCaching/test/Microsoft.AspNetCore.OutputCaching.Tests.csproj
@@ -11,10 +11,12 @@
+
+
+
-
-
+
diff --git a/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj b/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj
index 11d8d7798649..aea2ceba00df 100644
--- a/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj
+++ b/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj
@@ -7,13 +7,16 @@
+
-
+
+
+
diff --git a/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj b/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj
index ba9af0ee0b88..9e09d5ac2625 100644
--- a/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj
+++ b/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj
@@ -5,10 +5,13 @@
-
-
+
+
+
+
+
diff --git a/src/Middleware/RequestDecompression/test/Microsoft.AspNetCore.RequestDecompression.Tests.csproj b/src/Middleware/RequestDecompression/test/Microsoft.AspNetCore.RequestDecompression.Tests.csproj
index 02bfecb25623..5c551c7b23de 100644
--- a/src/Middleware/RequestDecompression/test/Microsoft.AspNetCore.RequestDecompression.Tests.csproj
+++ b/src/Middleware/RequestDecompression/test/Microsoft.AspNetCore.RequestDecompression.Tests.csproj
@@ -5,11 +5,13 @@
+
-
+
+
diff --git a/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj b/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj
index 49934055a4e5..f8c5446fc011 100644
--- a/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj
+++ b/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj
@@ -5,11 +5,14 @@
-
-
+
+
+
+
+
diff --git a/src/Middleware/ResponseCaching/test/Microsoft.AspNetCore.ResponseCaching.Tests.csproj b/src/Middleware/ResponseCaching/test/Microsoft.AspNetCore.ResponseCaching.Tests.csproj
index 7c5cd91743ba..d57a9fac1d5e 100644
--- a/src/Middleware/ResponseCaching/test/Microsoft.AspNetCore.ResponseCaching.Tests.csproj
+++ b/src/Middleware/ResponseCaching/test/Microsoft.AspNetCore.ResponseCaching.Tests.csproj
@@ -11,10 +11,12 @@
+
+
+
-
-
+
diff --git a/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj b/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj
index 1181c81916f0..d2bec2decb0b 100644
--- a/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj
+++ b/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj
@@ -9,10 +9,13 @@
-
-
+
+
+
+
+
diff --git a/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj b/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj
index 84c0ebb6ae38..568e3ef3ad19 100644
--- a/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj
+++ b/src/Middleware/ResponseCompression/test/Microsoft.AspNetCore.ResponseCompression.Tests.csproj
@@ -15,6 +15,7 @@
+
diff --git a/src/Middleware/Rewrite/sample/RewriteSample.csproj b/src/Middleware/Rewrite/sample/RewriteSample.csproj
index 4f3c6c60c320..c3ca7dee9e01 100644
--- a/src/Middleware/Rewrite/sample/RewriteSample.csproj
+++ b/src/Middleware/Rewrite/sample/RewriteSample.csproj
@@ -5,10 +5,13 @@
-
-
+
+
+
+
+
diff --git a/src/Middleware/Rewrite/test/Microsoft.AspNetCore.Rewrite.Tests.csproj b/src/Middleware/Rewrite/test/Microsoft.AspNetCore.Rewrite.Tests.csproj
index 01469717697e..e18d75664230 100644
--- a/src/Middleware/Rewrite/test/Microsoft.AspNetCore.Rewrite.Tests.csproj
+++ b/src/Middleware/Rewrite/test/Microsoft.AspNetCore.Rewrite.Tests.csproj
@@ -5,10 +5,12 @@
+
+
-
+
diff --git a/src/Middleware/Session/samples/SessionSample.csproj b/src/Middleware/Session/samples/SessionSample.csproj
index 26dce502c596..d57df4cca67a 100644
--- a/src/Middleware/Session/samples/SessionSample.csproj
+++ b/src/Middleware/Session/samples/SessionSample.csproj
@@ -5,13 +5,16 @@
-
-
+
+
+
+
+
diff --git a/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj b/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj
index d9dff6f05d25..d0711fa0cfb7 100644
--- a/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj
+++ b/src/Middleware/Session/test/Microsoft.AspNetCore.Session.Tests.csproj
@@ -8,6 +8,7 @@
+
diff --git a/src/Middleware/Spa/SpaServices.Extensions/test/Microsoft.AspNetCore.SpaServices.Extensions.Tests.csproj b/src/Middleware/Spa/SpaServices.Extensions/test/Microsoft.AspNetCore.SpaServices.Extensions.Tests.csproj
index 190ff4dd026d..c883699cb960 100644
--- a/src/Middleware/Spa/SpaServices.Extensions/test/Microsoft.AspNetCore.SpaServices.Extensions.Tests.csproj
+++ b/src/Middleware/Spa/SpaServices.Extensions/test/Microsoft.AspNetCore.SpaServices.Extensions.Tests.csproj
@@ -7,13 +7,14 @@
-
+
+
+
-
diff --git a/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj b/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj
index 6315427408ac..49bd66934d41 100644
--- a/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj
+++ b/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj
@@ -5,13 +5,16 @@
-
-
-
+
-
+
+
+
+
+
+
diff --git a/src/Middleware/StaticFiles/test/FunctionalTests/Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj b/src/Middleware/StaticFiles/test/FunctionalTests/Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj
index a17f0923cb95..67383e0d73ec 100644
--- a/src/Middleware/StaticFiles/test/FunctionalTests/Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj
+++ b/src/Middleware/StaticFiles/test/FunctionalTests/Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj
@@ -26,8 +26,10 @@
-
+
+
+
diff --git a/src/Middleware/StaticFiles/test/UnitTests/Microsoft.AspNetCore.StaticFiles.Tests.csproj b/src/Middleware/StaticFiles/test/UnitTests/Microsoft.AspNetCore.StaticFiles.Tests.csproj
index ad43ee30ee41..a694edf76e07 100644
--- a/src/Middleware/StaticFiles/test/UnitTests/Microsoft.AspNetCore.StaticFiles.Tests.csproj
+++ b/src/Middleware/StaticFiles/test/UnitTests/Microsoft.AspNetCore.StaticFiles.Tests.csproj
@@ -12,10 +12,12 @@
+
+
+
-
-
+
diff --git a/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj b/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj
index 2011a68496c3..8f8f6a3e7d3b 100644
--- a/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj
+++ b/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj
@@ -10,14 +10,17 @@
+
-
+
+
+
diff --git a/src/Middleware/WebSockets/test/UnitTests/Microsoft.AspNetCore.WebSockets.Tests.csproj b/src/Middleware/WebSockets/test/UnitTests/Microsoft.AspNetCore.WebSockets.Tests.csproj
index 89ea1e6abd56..8443c854c0ea 100644
--- a/src/Middleware/WebSockets/test/UnitTests/Microsoft.AspNetCore.WebSockets.Tests.csproj
+++ b/src/Middleware/WebSockets/test/UnitTests/Microsoft.AspNetCore.WebSockets.Tests.csproj
@@ -7,11 +7,13 @@
+
+
+
-
-
+
diff --git a/src/Mvc/Mvc.NewtonsoftJson/src/Microsoft.AspNetCore.Mvc.NewtonsoftJson.csproj b/src/Mvc/Mvc.NewtonsoftJson/src/Microsoft.AspNetCore.Mvc.NewtonsoftJson.csproj
index 71271939fa15..ff987966ea62 100644
--- a/src/Mvc/Mvc.NewtonsoftJson/src/Microsoft.AspNetCore.Mvc.NewtonsoftJson.csproj
+++ b/src/Mvc/Mvc.NewtonsoftJson/src/Microsoft.AspNetCore.Mvc.NewtonsoftJson.csproj
@@ -15,8 +15,9 @@
-
+
+
diff --git a/src/Mvc/Mvc.Razor/src/Microsoft.AspNetCore.Mvc.Razor.csproj b/src/Mvc/Mvc.Razor/src/Microsoft.AspNetCore.Mvc.Razor.csproj
index a6ce0daaffdb..1b5e655d29df 100644
--- a/src/Mvc/Mvc.Razor/src/Microsoft.AspNetCore.Mvc.Razor.csproj
+++ b/src/Mvc/Mvc.Razor/src/Microsoft.AspNetCore.Mvc.Razor.csproj
@@ -11,6 +11,8 @@
+
+
diff --git a/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj b/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj
index bb176c6dcd2d..70493aaf3e32 100644
--- a/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj
+++ b/src/Mvc/shared/Mvc.Core.TestCommon/Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj
@@ -8,12 +8,14 @@
+
+
-
+
diff --git a/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj b/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj
index 1664ee633666..c50db9dd52aa 100644
--- a/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj
+++ b/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj
@@ -7,7 +7,11 @@
+
+
+
+
diff --git a/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj b/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
index ab45407df1e9..2cf20e54aa71 100644
--- a/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
+++ b/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
@@ -15,13 +15,16 @@
+
+
+
diff --git a/src/Razor/Razor/test/Microsoft.AspNetCore.Razor.Test.csproj b/src/Razor/Razor/test/Microsoft.AspNetCore.Razor.Test.csproj
index 6a57d914f984..125db6f22f01 100644
--- a/src/Razor/Razor/test/Microsoft.AspNetCore.Razor.Test.csproj
+++ b/src/Razor/Razor/test/Microsoft.AspNetCore.Razor.Test.csproj
@@ -14,9 +14,12 @@
-
-
+
+
+
+
+
diff --git a/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj b/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj
index 3cc6a9564434..2bcfdd8510c0 100644
--- a/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj
+++ b/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj
@@ -9,10 +9,12 @@
+
+
diff --git a/src/Security/Authentication/Certificate/samples/Certificate.Sample/Certificate.Sample.csproj b/src/Security/Authentication/Certificate/samples/Certificate.Sample/Certificate.Sample.csproj
index 86d4f1fb5126..43ef2ad9d085 100644
--- a/src/Security/Authentication/Certificate/samples/Certificate.Sample/Certificate.Sample.csproj
+++ b/src/Security/Authentication/Certificate/samples/Certificate.Sample/Certificate.Sample.csproj
@@ -11,7 +11,11 @@
+
+
+
+
diff --git a/src/Security/Authentication/Cookies/samples/CookieSample/CookieSample.csproj b/src/Security/Authentication/Cookies/samples/CookieSample/CookieSample.csproj
index 412e23ab7103..3d329417c8de 100644
--- a/src/Security/Authentication/Cookies/samples/CookieSample/CookieSample.csproj
+++ b/src/Security/Authentication/Cookies/samples/CookieSample/CookieSample.csproj
@@ -8,6 +8,11 @@
+
+
+
+
+
diff --git a/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj b/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj
index 52aaae5177be..1f66db039ef3 100644
--- a/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj
+++ b/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj
@@ -7,13 +7,16 @@
+
-
+
+
+
diff --git a/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/JwtBearerSample.csproj b/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/JwtBearerSample.csproj
index 798b2f54d0ef..b48b81dc83f9 100644
--- a/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/JwtBearerSample.csproj
+++ b/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/JwtBearerSample.csproj
@@ -9,7 +9,12 @@
+
+
+
+
+
diff --git a/src/Security/Authentication/JwtBearer/samples/MinimalJwtBearerSample/MinimalJwtBearerSample.csproj b/src/Security/Authentication/JwtBearer/samples/MinimalJwtBearerSample/MinimalJwtBearerSample.csproj
index e0ab758b6a83..ca9bbc7e0024 100644
--- a/src/Security/Authentication/JwtBearer/samples/MinimalJwtBearerSample/MinimalJwtBearerSample.csproj
+++ b/src/Security/Authentication/JwtBearer/samples/MinimalJwtBearerSample/MinimalJwtBearerSample.csproj
@@ -12,6 +12,12 @@
+
+
+
+
+
+
diff --git a/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/NegotiateAuthSample.csproj b/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/NegotiateAuthSample.csproj
index aee2213438f2..d7269017fda6 100644
--- a/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/NegotiateAuthSample.csproj
+++ b/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/NegotiateAuthSample.csproj
@@ -9,6 +9,10 @@
+
+
+
+
diff --git a/src/Security/Authentication/Negotiate/test/Negotiate.FunctionalTest/Microsoft.AspNetCore.Authentication.Negotiate.FunctionalTest.csproj b/src/Security/Authentication/Negotiate/test/Negotiate.FunctionalTest/Microsoft.AspNetCore.Authentication.Negotiate.FunctionalTest.csproj
index bb84ed1c8de6..61db91844255 100644
--- a/src/Security/Authentication/Negotiate/test/Negotiate.FunctionalTest/Microsoft.AspNetCore.Authentication.Negotiate.FunctionalTest.csproj
+++ b/src/Security/Authentication/Negotiate/test/Negotiate.FunctionalTest/Microsoft.AspNetCore.Authentication.Negotiate.FunctionalTest.csproj
@@ -7,6 +7,10 @@
+
+
+
+
diff --git a/src/Security/Authentication/Negotiate/test/Negotiate.Test/Microsoft.AspNetCore.Authentication.Negotiate.Test.csproj b/src/Security/Authentication/Negotiate/test/Negotiate.Test/Microsoft.AspNetCore.Authentication.Negotiate.Test.csproj
index 663006135bfa..f7b6ffc974cd 100644
--- a/src/Security/Authentication/Negotiate/test/Negotiate.Test/Microsoft.AspNetCore.Authentication.Negotiate.Test.csproj
+++ b/src/Security/Authentication/Negotiate/test/Negotiate.Test/Microsoft.AspNetCore.Authentication.Negotiate.Test.csproj
@@ -7,8 +7,11 @@
-
+
+
+
+
diff --git a/src/Security/Authentication/OpenIdConnect/samples/MinimalOpenIdConnectSample/MinimalOpenIdConnectSample.csproj b/src/Security/Authentication/OpenIdConnect/samples/MinimalOpenIdConnectSample/MinimalOpenIdConnectSample.csproj
index f1b23925c4d1..cd7fc0c18740 100644
--- a/src/Security/Authentication/OpenIdConnect/samples/MinimalOpenIdConnectSample/MinimalOpenIdConnectSample.csproj
+++ b/src/Security/Authentication/OpenIdConnect/samples/MinimalOpenIdConnectSample/MinimalOpenIdConnectSample.csproj
@@ -10,6 +10,12 @@
+
+
+
+
+
+
diff --git a/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/OpenIdConnectSample.csproj b/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/OpenIdConnectSample.csproj
index bab8fec2acb2..b077e1410e8f 100644
--- a/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/OpenIdConnectSample.csproj
+++ b/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/OpenIdConnectSample.csproj
@@ -2,7 +2,7 @@
$(DefaultNetCoreTargetFramework)
- aspnet5-OpenIdConnectSample-20151210110318
+ aspnet5-OpenIdConnectSample-20151210110318
OutOfProcess
@@ -14,8 +14,13 @@
+
+
+
+
+
diff --git a/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj b/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj
index 1acc0d6dda8f..1ca63da0cb1d 100644
--- a/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj
+++ b/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj
@@ -8,13 +8,16 @@
-
+
+
+
+
-
+
diff --git a/src/Security/Authentication/samples/SocialSample/SocialSample.csproj b/src/Security/Authentication/samples/SocialSample/SocialSample.csproj
index 4027f168ad95..a3e69ef0fccc 100644
--- a/src/Security/Authentication/samples/SocialSample/SocialSample.csproj
+++ b/src/Security/Authentication/samples/SocialSample/SocialSample.csproj
@@ -20,8 +20,16 @@
+
+
+
+
+
+
+
+
diff --git a/src/Security/Authentication/test/Microsoft.AspNetCore.Authentication.Test.csproj b/src/Security/Authentication/test/Microsoft.AspNetCore.Authentication.Test.csproj
index 64bcf143aa82..dea424710ac9 100644
--- a/src/Security/Authentication/test/Microsoft.AspNetCore.Authentication.Test.csproj
+++ b/src/Security/Authentication/test/Microsoft.AspNetCore.Authentication.Test.csproj
@@ -43,6 +43,10 @@
+
+
+
+
diff --git a/src/Security/Authorization/test/Microsoft.AspNetCore.Authorization.Test.csproj b/src/Security/Authorization/test/Microsoft.AspNetCore.Authorization.Test.csproj
index 8eeed805c2c9..c62a8a9ebdd3 100644
--- a/src/Security/Authorization/test/Microsoft.AspNetCore.Authorization.Test.csproj
+++ b/src/Security/Authorization/test/Microsoft.AspNetCore.Authorization.Test.csproj
@@ -8,9 +8,13 @@
+
+
+
+
diff --git a/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj b/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj
index f605a56a5c98..b5638c184300 100644
--- a/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj
+++ b/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj
@@ -5,12 +5,15 @@
-
-
+
+
+
+
+
diff --git a/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj b/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj
index 5a2f5a967ac6..e90ac31170b8 100644
--- a/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj
+++ b/src/Security/CookiePolicy/test/Microsoft.AspNetCore.CookiePolicy.Test.csproj
@@ -16,6 +16,7 @@
+
diff --git a/src/Security/perf/Microbenchmarks/Microsoft.AspNetCore.Security.Microbenchmarks.csproj b/src/Security/perf/Microbenchmarks/Microsoft.AspNetCore.Security.Microbenchmarks.csproj
index 3fdcc371e996..8400eb8fce7d 100644
--- a/src/Security/perf/Microbenchmarks/Microsoft.AspNetCore.Security.Microbenchmarks.csproj
+++ b/src/Security/perf/Microbenchmarks/Microsoft.AspNetCore.Security.Microbenchmarks.csproj
@@ -10,12 +10,14 @@
-
+
+
-
+
+
diff --git a/src/Servers/HttpSys/samples/HotAddSample/HotAddSample.csproj b/src/Servers/HttpSys/samples/HotAddSample/HotAddSample.csproj
index 29ba5ec54093..9205b9584837 100644
--- a/src/Servers/HttpSys/samples/HotAddSample/HotAddSample.csproj
+++ b/src/Servers/HttpSys/samples/HotAddSample/HotAddSample.csproj
@@ -7,9 +7,11 @@
-
-
+
+
+
+
diff --git a/src/Servers/HttpSys/samples/QueueSharing/QueueSharing.csproj b/src/Servers/HttpSys/samples/QueueSharing/QueueSharing.csproj
index 3ce720474eb9..e8b8ce846af8 100644
--- a/src/Servers/HttpSys/samples/QueueSharing/QueueSharing.csproj
+++ b/src/Servers/HttpSys/samples/QueueSharing/QueueSharing.csproj
@@ -7,9 +7,10 @@
-
-
+
+
+
diff --git a/src/Servers/HttpSys/samples/SelfHostServer/SelfHostServer.csproj b/src/Servers/HttpSys/samples/SelfHostServer/SelfHostServer.csproj
index 46b04f963c21..0b4090868073 100644
--- a/src/Servers/HttpSys/samples/SelfHostServer/SelfHostServer.csproj
+++ b/src/Servers/HttpSys/samples/SelfHostServer/SelfHostServer.csproj
@@ -12,9 +12,10 @@
-
-
+
+
+
diff --git a/src/Servers/HttpSys/samples/TlsFeaturesObserve/TlsFeaturesObserve.csproj b/src/Servers/HttpSys/samples/TlsFeaturesObserve/TlsFeaturesObserve.csproj
index 3ba4390b4e73..c925030be386 100644
--- a/src/Servers/HttpSys/samples/TlsFeaturesObserve/TlsFeaturesObserve.csproj
+++ b/src/Servers/HttpSys/samples/TlsFeaturesObserve/TlsFeaturesObserve.csproj
@@ -8,6 +8,10 @@
+
+
+
+
diff --git a/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj b/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
index 3d7843bed114..85631caef02a 100644
--- a/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
+++ b/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
@@ -31,8 +31,10 @@
-
+
+
+
diff --git a/src/Servers/HttpSys/test/testassets/DelegationSite/DelegationSite.csproj b/src/Servers/HttpSys/test/testassets/DelegationSite/DelegationSite.csproj
index f5f48c3f8ed8..d48af5c8c601 100644
--- a/src/Servers/HttpSys/test/testassets/DelegationSite/DelegationSite.csproj
+++ b/src/Servers/HttpSys/test/testassets/DelegationSite/DelegationSite.csproj
@@ -6,9 +6,10 @@
-
-
+
+
+
diff --git a/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj b/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj
index 2b7b223c9178..7f266cc41780 100644
--- a/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj
+++ b/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj
@@ -10,12 +10,15 @@
+
+
+
diff --git a/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj b/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj
index 3034d67b9837..92a485611187 100644
--- a/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj
+++ b/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj
@@ -37,10 +37,13 @@
+
+
+
diff --git a/src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj b/src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj
index 6a2f2353314b..b79280574622 100644
--- a/src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj
+++ b/src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj
@@ -20,7 +20,9 @@
+
+
diff --git a/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
index 7a32a0182a54..8bf76bfcb01e 100644
--- a/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
+++ b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
@@ -22,17 +22,20 @@
+
+
+
-
+
diff --git a/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj b/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj
index 28b1a75183b3..b652afc46343 100644
--- a/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj
+++ b/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj
@@ -5,10 +5,13 @@
-
-
+
+
+
+
+
diff --git a/src/Servers/IIS/IISIntegration/test/Tests/Microsoft.AspNetCore.Server.IISIntegration.Tests.csproj b/src/Servers/IIS/IISIntegration/test/Tests/Microsoft.AspNetCore.Server.IISIntegration.Tests.csproj
index a492efb06bc1..9bcf8de151ae 100644
--- a/src/Servers/IIS/IISIntegration/test/Tests/Microsoft.AspNetCore.Server.IISIntegration.Tests.csproj
+++ b/src/Servers/IIS/IISIntegration/test/Tests/Microsoft.AspNetCore.Server.IISIntegration.Tests.csproj
@@ -5,11 +5,13 @@
-
-
-
+
+
+
+
+
diff --git a/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj b/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj
index 1649a41044a1..24a4525b180a 100644
--- a/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj
+++ b/src/Servers/Kestrel/Core/test/Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj
@@ -27,6 +27,7 @@
+
diff --git a/src/Servers/Kestrel/Kestrel/test/Microsoft.AspNetCore.Server.Kestrel.Tests.csproj b/src/Servers/Kestrel/Kestrel/test/Microsoft.AspNetCore.Server.Kestrel.Tests.csproj
index 55293c748cae..75d22ee636ad 100644
--- a/src/Servers/Kestrel/Kestrel/test/Microsoft.AspNetCore.Server.Kestrel.Tests.csproj
+++ b/src/Servers/Kestrel/Kestrel/test/Microsoft.AspNetCore.Server.Kestrel.Tests.csproj
@@ -23,8 +23,10 @@
+
+
diff --git a/src/Servers/Kestrel/Transport.NamedPipes/test/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.Tests.csproj b/src/Servers/Kestrel/Transport.NamedPipes/test/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.Tests.csproj
index 1734e407b43b..eceefc666302 100644
--- a/src/Servers/Kestrel/Transport.NamedPipes/test/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.Tests.csproj
+++ b/src/Servers/Kestrel/Transport.NamedPipes/test/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.Tests.csproj
@@ -23,12 +23,14 @@
+
-
-
+
+
+
diff --git a/src/Servers/Kestrel/Transport.Quic/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj b/src/Servers/Kestrel/Transport.Quic/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj
index e55b5799fead..2c8dd731d903 100644
--- a/src/Servers/Kestrel/Transport.Quic/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj
+++ b/src/Servers/Kestrel/Transport.Quic/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj
@@ -26,12 +26,14 @@
+
-
-
+
+
+
diff --git a/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj b/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj
index fc6cd4ab0413..1347421e0554 100644
--- a/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj
+++ b/src/Servers/Kestrel/perf/Microbenchmarks/Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj
@@ -32,14 +32,16 @@
-
-
-
+
+
+
+
+
diff --git a/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj b/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj
index 04a4e6652c60..4146eacc32d5 100644
--- a/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj
+++ b/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj
@@ -7,9 +7,12 @@
-
-
+
+
+
+
+
diff --git a/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj b/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj
index aca4b7b25f96..e83f2b0fc85f 100644
--- a/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj
+++ b/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj
@@ -11,11 +11,13 @@
-
-
+
-
-
+
+
+
+
+
diff --git a/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj b/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj
index 8be0623a7a9d..a37cfd60c733 100644
--- a/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj
+++ b/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj
@@ -7,9 +7,12 @@
-
-
+
+
+
+
+
diff --git a/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj b/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj
index eaee63a562a9..a2c58cefd5bb 100644
--- a/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj
+++ b/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj
@@ -7,9 +7,12 @@
-
-
+
+
+
+
+
diff --git a/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj b/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj
index 397cf5ffa5ab..4c04269f223b 100644
--- a/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj
+++ b/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj
@@ -7,10 +7,13 @@
-
-
+
+
+
+
+
diff --git a/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj b/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj
index 04a4e6652c60..4146eacc32d5 100644
--- a/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj
+++ b/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj
@@ -7,9 +7,12 @@
-
-
+
+
+
+
+
diff --git a/src/Servers/Kestrel/samples/WebTransportInteractiveSampleApp/WebTransportInteractiveSampleApp.csproj b/src/Servers/Kestrel/samples/WebTransportInteractiveSampleApp/WebTransportInteractiveSampleApp.csproj
index 49484289eec9..da05772bcd6d 100644
--- a/src/Servers/Kestrel/samples/WebTransportInteractiveSampleApp/WebTransportInteractiveSampleApp.csproj
+++ b/src/Servers/Kestrel/samples/WebTransportInteractiveSampleApp/WebTransportInteractiveSampleApp.csproj
@@ -11,10 +11,15 @@
+
+
+
+
+
diff --git a/src/Servers/Kestrel/samples/WebTransportSampleApp/WebTransportSampleApp.csproj b/src/Servers/Kestrel/samples/WebTransportSampleApp/WebTransportSampleApp.csproj
index 1b140b33f192..d8732247825d 100644
--- a/src/Servers/Kestrel/samples/WebTransportSampleApp/WebTransportSampleApp.csproj
+++ b/src/Servers/Kestrel/samples/WebTransportSampleApp/WebTransportSampleApp.csproj
@@ -10,10 +10,13 @@
+
+
+
-
-
+
+
diff --git a/src/Servers/Kestrel/samples/http2cat/http2cat.csproj b/src/Servers/Kestrel/samples/http2cat/http2cat.csproj
index da44511365e9..061d711e7a6b 100644
--- a/src/Servers/Kestrel/samples/http2cat/http2cat.csproj
+++ b/src/Servers/Kestrel/samples/http2cat/http2cat.csproj
@@ -20,13 +20,15 @@
-
-
-
+
+
+
+
+
+
-
diff --git a/src/Servers/Kestrel/stress/HttpStress.csproj b/src/Servers/Kestrel/stress/HttpStress.csproj
index 779752537d5e..fe3faff60dd5 100644
--- a/src/Servers/Kestrel/stress/HttpStress.csproj
+++ b/src/Servers/Kestrel/stress/HttpStress.csproj
@@ -7,13 +7,16 @@
+
+
+
diff --git a/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj b/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj
index 54a0be6b5b7c..a00de6dfe67c 100644
--- a/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj
+++ b/src/Servers/Kestrel/test/InMemory.FunctionalTests/InMemory.FunctionalTests.csproj
@@ -35,10 +35,12 @@
+
+
diff --git a/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj b/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj
index ed0f1a6bf41f..b767beea8def 100644
--- a/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj
+++ b/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj
@@ -33,13 +33,14 @@
+
-
-
+
+
diff --git a/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj b/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj
index 931a2fa641f2..dddb47a60d98 100644
--- a/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj
+++ b/src/Servers/Kestrel/test/Sockets.BindTests/Sockets.BindTests.csproj
@@ -27,11 +27,11 @@
+
-
-
+
diff --git a/src/Servers/Kestrel/test/Sockets.FunctionalTests/Sockets.FunctionalTests.csproj b/src/Servers/Kestrel/test/Sockets.FunctionalTests/Sockets.FunctionalTests.csproj
index ae558fc74ba1..834d4ef835aa 100644
--- a/src/Servers/Kestrel/test/Sockets.FunctionalTests/Sockets.FunctionalTests.csproj
+++ b/src/Servers/Kestrel/test/Sockets.FunctionalTests/Sockets.FunctionalTests.csproj
@@ -30,12 +30,14 @@
-
-
+
+
+
+
diff --git a/src/Servers/testassets/ServerComparison.TestSites/ServerComparison.TestSites.csproj b/src/Servers/testassets/ServerComparison.TestSites/ServerComparison.TestSites.csproj
index 2b3690af7420..21d83373f813 100644
--- a/src/Servers/testassets/ServerComparison.TestSites/ServerComparison.TestSites.csproj
+++ b/src/Servers/testassets/ServerComparison.TestSites/ServerComparison.TestSites.csproj
@@ -11,6 +11,10 @@
+
+
+
+
@@ -19,6 +23,7 @@
+
diff --git a/src/SignalR/clients/ts/FunctionalTests/SignalR.Client.FunctionalTestApp.csproj b/src/SignalR/clients/ts/FunctionalTests/SignalR.Client.FunctionalTestApp.csproj
index 6bfbd5c69275..3f27c9740b08 100644
--- a/src/SignalR/clients/ts/FunctionalTests/SignalR.Client.FunctionalTestApp.csproj
+++ b/src/SignalR/clients/ts/FunctionalTests/SignalR.Client.FunctionalTestApp.csproj
@@ -23,13 +23,18 @@
+
+
+
+
-
+
+
diff --git a/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj b/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj
index d7eead61efb8..b24f83501d42 100644
--- a/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj
+++ b/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj
@@ -11,13 +11,16 @@
-
-
+
+
+
+
+
diff --git a/src/SignalR/samples/JwtSample/JwtSample.csproj b/src/SignalR/samples/JwtSample/JwtSample.csproj
index b8ac2dc1a7cb..f255bb7c5d19 100644
--- a/src/SignalR/samples/JwtSample/JwtSample.csproj
+++ b/src/SignalR/samples/JwtSample/JwtSample.csproj
@@ -10,13 +10,18 @@
-
+
+
+
+
+
+
diff --git a/src/SignalR/samples/SignalRSamples/SignalRSamples.csproj b/src/SignalR/samples/SignalRSamples/SignalRSamples.csproj
index 9dc610ca8580..d739c04eb0ee 100644
--- a/src/SignalR/samples/SignalRSamples/SignalRSamples.csproj
+++ b/src/SignalR/samples/SignalRSamples/SignalRSamples.csproj
@@ -7,17 +7,20 @@
+
+
+
-
+
diff --git a/src/SignalR/samples/SocialWeather/SocialWeather.csproj b/src/SignalR/samples/SocialWeather/SocialWeather.csproj
index 78c7d3105eda..ed6506b6d300 100644
--- a/src/SignalR/samples/SocialWeather/SocialWeather.csproj
+++ b/src/SignalR/samples/SocialWeather/SocialWeather.csproj
@@ -6,15 +6,18 @@
-
-
+
+
+
+
+
diff --git a/src/StaticAssets/test/Microsoft.AspNetCore.StaticAssets.Tests.csproj b/src/StaticAssets/test/Microsoft.AspNetCore.StaticAssets.Tests.csproj
index ce765d832381..244ac144d708 100644
--- a/src/StaticAssets/test/Microsoft.AspNetCore.StaticAssets.Tests.csproj
+++ b/src/StaticAssets/test/Microsoft.AspNetCore.StaticAssets.Tests.csproj
@@ -6,8 +6,13 @@
+
+
+
+
+
diff --git a/src/Tools/dotnet-user-jwts/test/dotnet-user-jwts.Tests.csproj b/src/Tools/dotnet-user-jwts/test/dotnet-user-jwts.Tests.csproj
index b362c30d0611..f98fbdfe70ad 100644
--- a/src/Tools/dotnet-user-jwts/test/dotnet-user-jwts.Tests.csproj
+++ b/src/Tools/dotnet-user-jwts/test/dotnet-user-jwts.Tests.csproj
@@ -17,7 +17,12 @@
+
+
+
+
+
diff --git a/src/Validation/test/Microsoft.Extensions.Validation.GeneratorTests/Microsoft.Extensions.Validation.GeneratorTests.csproj b/src/Validation/test/Microsoft.Extensions.Validation.GeneratorTests/Microsoft.Extensions.Validation.GeneratorTests.csproj
index db08d20e21a2..0e2c5a751c47 100644
--- a/src/Validation/test/Microsoft.Extensions.Validation.GeneratorTests/Microsoft.Extensions.Validation.GeneratorTests.csproj
+++ b/src/Validation/test/Microsoft.Extensions.Validation.GeneratorTests/Microsoft.Extensions.Validation.GeneratorTests.csproj
@@ -10,20 +10,22 @@
-
-
+
+
+
+
-
+
+
+
-
-
-
-
+
+
From f656c3a22c20437711e6477921f5b0087a1e917a Mon Sep 17 00:00:00 2001
From: wigodbe
Date: Fri, 12 Dec 2025 09:22:14 -0800
Subject: [PATCH 36/37] Fix reference name
---
...rosoft.AspNetCore.Components.WebAssembly.Server.Tests.csproj | 2 +-
.../Wasm.Performance/Driver/Wasm.Performance.Driver.csproj | 2 +-
.../StartRequestDelegateUrlApp.csproj | 2 +-
.../StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj | 2 +-
.../TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj | 2 +-
.../test/Microsoft.AspNetCore.Http.Abstractions.Tests.csproj | 2 +-
.../test/Microsoft.AspNetCore.Http.Results.Tests.csproj | 2 +-
.../Microsoft.AspNetCore.Http.Microbenchmarks.csproj | 2 +-
src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj | 2 +-
.../test/testassets/RoutingSandbox/RoutingSandbox.csproj | 2 +-
.../test/testassets/RoutingWebSite/RoutingWebSite.csproj | 2 +-
src/Http/samples/MinimalSample/MinimalSample.csproj | 2 +-
src/Http/samples/MinimalSampleOwin/MinimalSampleOwin.csproj | 2 +-
.../MinimalValidationSample/MinimalValidationSample.csproj | 2 +-
.../CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj | 2 +-
.../DatabaseErrorPageSample/DatabaseErrorPageSample.csproj | 2 +-
.../DeveloperExceptionPageSample.csproj | 2 +-
.../ExceptionHandlerSample/ExceptionHandlerSample.csproj | 2 +-
.../StatusCodePagesSample/StatusCodePagesSample.csproj | 2 +-
.../test/testassets/WelcomePageSample/WelcomePageSample.csproj | 2 +-
.../HeaderPropagationSample/HeaderPropagationSample.csproj | 2 +-
.../testassets/HealthChecksSample/HealthChecksSample.csproj | 2 +-
src/Middleware/HostFiltering/sample/HostFilteringSample.csproj | 2 +-
.../samples/HttpLogging.Sample/HttpLogging.Sample.csproj | 2 +-
.../samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj | 2 +-
src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj | 2 +-
src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj | 2 +-
.../test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj | 2 +-
src/Middleware/Localization/sample/LocalizationSample.csproj | 2 +-
.../testassets/LocalizationWebsite/LocalizationWebsite.csproj | 2 +-
...oft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj | 2 +-
.../MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj | 2 +-
.../test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj | 2 +-
.../samples/OutputCachingSample/OutputCachingSample.csproj | 2 +-
.../samples/RateLimitingSample/RateLimitingSample.csproj | 2 +-
.../sample/RequestDecompressionSample.csproj | 2 +-
.../samples/ResponseCachingSample/ResponseCachingSample.csproj | 2 +-
.../ResponseCompression/sample/ResponseCompressionSample.csproj | 2 +-
src/Middleware/Rewrite/sample/RewriteSample.csproj | 2 +-
src/Middleware/Session/samples/SessionSample.csproj | 2 +-
.../samples/StaticFileSample/StaticFileSample.csproj | 2 +-
.../ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj | 2 +-
.../SimpleWebSiteWithWebApplicationBuilderException.csproj | 2 +-
src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj | 2 +-
.../Certificate.Optional.Sample.csproj | 2 +-
.../Cookies/samples/CookieSample/CookieSample.csproj | 2 +-
.../samples/CookieSessionSample/CookieSessionSample.csproj | 2 +-
.../JwtBearer/samples/JwtBearerSample/JwtBearerSample.csproj | 2 +-
.../MinimalJwtBearerSample/MinimalJwtBearerSample.csproj | 2 +-
.../samples/NegotiateAuthSample/NegotiateAuthSample.csproj | 2 +-
...ft.AspNetCore.Authentication.Negotiate.FunctionalTest.csproj | 2 +-
.../MinimalOpenIdConnectSample.csproj | 2 +-
.../samples/OpenIdConnectSample/OpenIdConnectSample.csproj | 2 +-
.../WsFederation/samples/WsFedSample/WsFedSample.csproj | 2 +-
.../Authentication/samples/SocialSample/SocialSample.csproj | 2 +-
.../samples/CookiePolicySample/CookiePolicySample.csproj | 2 +-
.../samples/TlsFeaturesObserve/TlsFeaturesObserve.csproj | 2 +-
.../IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj | 2 +-
.../IIS.NewShim.FunctionalTests.csproj | 2 +-
.../test/testassets/InProcessWebSite/InProcessWebSite.csproj | 2 +-
.../IIS/IISIntegration/samples/IISSample/IISSample.csproj | 2 +-
.../Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj | 2 +-
.../Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj | 2 +-
.../Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj | 2 +-
src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj | 2 +-
src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj | 2 +-
.../Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj | 2 +-
.../WebTransportInteractiveSampleApp.csproj | 2 +-
src/Servers/Kestrel/samples/http2cat/http2cat.csproj | 2 +-
src/Servers/Kestrel/stress/HttpStress.csproj | 2 +-
.../ServerComparison.TestSites.csproj | 2 +-
.../ts/FunctionalTests/SignalR.Client.FunctionalTestApp.csproj | 2 +-
.../Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj | 2 +-
src/SignalR/samples/JwtSample/JwtSample.csproj | 2 +-
src/SignalR/samples/SignalRSamples/SignalRSamples.csproj | 2 +-
src/SignalR/samples/SocialWeather/SocialWeather.csproj | 2 +-
.../test/Microsoft.AspNetCore.StaticAssets.Tests.csproj | 2 +-
src/Tools/dotnet-user-jwts/test/dotnet-user-jwts.Tests.csproj | 2 +-
.../Microsoft.Extensions.Validation.GeneratorTests.csproj | 2 +-
79 files changed, 79 insertions(+), 79 deletions(-)
diff --git a/src/Components/WebAssembly/Server/test/Microsoft.AspNetCore.Components.WebAssembly.Server.Tests.csproj b/src/Components/WebAssembly/Server/test/Microsoft.AspNetCore.Components.WebAssembly.Server.Tests.csproj
index 6d2fa4a731bb..f652aa1ed756 100644
--- a/src/Components/WebAssembly/Server/test/Microsoft.AspNetCore.Components.WebAssembly.Server.Tests.csproj
+++ b/src/Components/WebAssembly/Server/test/Microsoft.AspNetCore.Components.WebAssembly.Server.Tests.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj b/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj
index f761a09e1bff..aba20eee83cb 100644
--- a/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj
+++ b/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj
@@ -13,7 +13,7 @@
-
+
diff --git a/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj b/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj
index ca8fb00ab88f..3fea59f8c12c 100644
--- a/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj
+++ b/src/DefaultBuilder/testassets/StartRequestDelegateUrlApp/StartRequestDelegateUrlApp.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj b/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj
index 914cf1966ebe..297a2867e4d3 100644
--- a/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj
+++ b/src/DefaultBuilder/testassets/StartRouteBuilderUrlApp/StartRouteBuilderUrlApp.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
index b870a6572e42..23ef96da03c0 100644
--- a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
+++ b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
@@ -9,7 +9,7 @@
-
+
diff --git a/src/Http/Http.Abstractions/test/Microsoft.AspNetCore.Http.Abstractions.Tests.csproj b/src/Http/Http.Abstractions/test/Microsoft.AspNetCore.Http.Abstractions.Tests.csproj
index 2efcd842972e..d65db3823483 100644
--- a/src/Http/Http.Abstractions/test/Microsoft.AspNetCore.Http.Abstractions.Tests.csproj
+++ b/src/Http/Http.Abstractions/test/Microsoft.AspNetCore.Http.Abstractions.Tests.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj b/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
index 48eb25b6723d..0998c1e8e829 100644
--- a/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
+++ b/src/Http/Http.Results/test/Microsoft.AspNetCore.Http.Results.Tests.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj b/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj
index 7a3bf71209ce..d653edc8ed31 100644
--- a/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj
+++ b/src/Http/Http/perf/Microbenchmarks/Microsoft.AspNetCore.Http.Microbenchmarks.csproj
@@ -12,7 +12,7 @@
-
+
diff --git a/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj b/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj
index ba77716a086b..cc78dbabdbd8 100644
--- a/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj
+++ b/src/Http/Routing/test/testassets/Benchmarks/Benchmarks.csproj
@@ -6,7 +6,7 @@
-
+
diff --git a/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj b/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj
index 97815c4046f0..4785b8a0b415 100644
--- a/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj
+++ b/src/Http/Routing/test/testassets/RoutingSandbox/RoutingSandbox.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj b/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj
index 97815c4046f0..4785b8a0b415 100644
--- a/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj
+++ b/src/Http/Routing/test/testassets/RoutingWebSite/RoutingWebSite.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Http/samples/MinimalSample/MinimalSample.csproj b/src/Http/samples/MinimalSample/MinimalSample.csproj
index 90cfc2a1ecba..03e8dbd41e4d 100644
--- a/src/Http/samples/MinimalSample/MinimalSample.csproj
+++ b/src/Http/samples/MinimalSample/MinimalSample.csproj
@@ -10,7 +10,7 @@
-
+
diff --git a/src/Http/samples/MinimalSampleOwin/MinimalSampleOwin.csproj b/src/Http/samples/MinimalSampleOwin/MinimalSampleOwin.csproj
index e37bba47d0ba..7ee46c547e67 100644
--- a/src/Http/samples/MinimalSampleOwin/MinimalSampleOwin.csproj
+++ b/src/Http/samples/MinimalSampleOwin/MinimalSampleOwin.csproj
@@ -10,7 +10,7 @@
-
+
diff --git a/src/Http/samples/MinimalValidationSample/MinimalValidationSample.csproj b/src/Http/samples/MinimalValidationSample/MinimalValidationSample.csproj
index 1f55e6b1e232..ee6f553e8568 100644
--- a/src/Http/samples/MinimalValidationSample/MinimalValidationSample.csproj
+++ b/src/Http/samples/MinimalValidationSample/MinimalValidationSample.csproj
@@ -9,7 +9,7 @@
-
+
diff --git a/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj b/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj
index ded92c664328..f0d139035086 100644
--- a/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj
+++ b/src/Middleware/CORS/test/testassets/CorsMiddlewareWebSite/CorsMiddlewareWebSite.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj b/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj
index 6efd7d29dde5..cdc88bbc838e 100644
--- a/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/DatabaseErrorPageSample/DatabaseErrorPageSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj b/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj
index a2029ac5c56d..c0f289db694b 100644
--- a/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/DeveloperExceptionPageSample/DeveloperExceptionPageSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj b/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj
index 3c005e0174cd..cc6c76e26ee3 100644
--- a/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/ExceptionHandlerSample/ExceptionHandlerSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj b/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj
index 23a3b543bc04..ea75fb7d78a3 100644
--- a/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/StatusCodePagesSample/StatusCodePagesSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj b/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj
index 120208f15565..988ab018c293 100644
--- a/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj
+++ b/src/Middleware/Diagnostics/test/testassets/WelcomePageSample/WelcomePageSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj b/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj
index 198b85688c36..71fcce317af2 100644
--- a/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj
+++ b/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/HeaderPropagationSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj b/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj
index eee5608af87c..a9184e22fae2 100644
--- a/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj
+++ b/src/Middleware/HealthChecks/test/testassets/HealthChecksSample/HealthChecksSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj b/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj
index ef43d033104f..3fe6895a2c27 100644
--- a/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj
+++ b/src/Middleware/HostFiltering/sample/HostFilteringSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj b/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj
index 60b33f09fbcb..a90fa3ab8872 100644
--- a/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj
+++ b/src/Middleware/HttpLogging/samples/HttpLogging.Sample/HttpLogging.Sample.csproj
@@ -6,7 +6,7 @@
-
+
diff --git a/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj b/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj
index e1a318edf68d..6431db857820 100644
--- a/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj
+++ b/src/Middleware/HttpLogging/samples/Logging.W3C.Sample/Logging.W3C.Sample.csproj
@@ -6,7 +6,7 @@
-
+
diff --git a/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj b/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj
index fccbd13b64ab..4887814d7504 100644
--- a/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj
+++ b/src/Middleware/HttpOverrides/sample/HttpOverridesSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj b/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj
index a16232c60815..1107878d954a 100644
--- a/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj
+++ b/src/Middleware/HttpsPolicy/sample/HttpsPolicySample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj b/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj
index 627f42fe7acd..6f049419b326 100644
--- a/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj
+++ b/src/Middleware/Localization.Routing/test/Microsoft.AspNetCore.Localization.Routing.Tests.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/Localization/sample/LocalizationSample.csproj b/src/Middleware/Localization/sample/LocalizationSample.csproj
index 75245eccd890..a8c158c17fa5 100644
--- a/src/Middleware/Localization/sample/LocalizationSample.csproj
+++ b/src/Middleware/Localization/sample/LocalizationSample.csproj
@@ -8,7 +8,7 @@
-
+
diff --git a/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj b/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj
index 802f1342a415..737e0d82ab77 100644
--- a/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj
+++ b/src/Middleware/Localization/testassets/LocalizationWebsite/LocalizationWebsite.csproj
@@ -10,7 +10,7 @@
-
+
diff --git a/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj b/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj
index 7e098890f962..76408a8341f9 100644
--- a/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj
+++ b/src/Middleware/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test/Microsoft.AspNetCore.OutputCaching.StackExchangeRedis.Tests.csproj
@@ -4,7 +4,7 @@
-
+
diff --git a/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj b/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj
index 0efd9b91c67a..3d6bde3265b6 100644
--- a/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj
+++ b/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/MiddlewareAnalysisSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj b/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj
index ebc64e34538c..7981929cece6 100644
--- a/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj
+++ b/src/Middleware/MiddlewareAnalysis/test/Microsoft.AspNetCore.MiddlewareAnalysis.Tests.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj b/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj
index 7c26f49e72a8..5c6da79026a7 100644
--- a/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj
+++ b/src/Middleware/OutputCaching/samples/OutputCachingSample/OutputCachingSample.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj b/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj
index aea2ceba00df..452eaba568fd 100644
--- a/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj
+++ b/src/Middleware/RateLimiting/samples/RateLimitingSample/RateLimitingSample.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj b/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj
index 9e09d5ac2625..35cdd67348fe 100644
--- a/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj
+++ b/src/Middleware/RequestDecompression/sample/RequestDecompressionSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj b/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj
index f8c5446fc011..0c2e8fed540c 100644
--- a/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj
+++ b/src/Middleware/ResponseCaching/samples/ResponseCachingSample/ResponseCachingSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj b/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj
index d2bec2decb0b..1f5da37bf5f1 100644
--- a/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj
+++ b/src/Middleware/ResponseCompression/sample/ResponseCompressionSample.csproj
@@ -9,7 +9,7 @@
-
+
diff --git a/src/Middleware/Rewrite/sample/RewriteSample.csproj b/src/Middleware/Rewrite/sample/RewriteSample.csproj
index c3ca7dee9e01..6eb5634d1d71 100644
--- a/src/Middleware/Rewrite/sample/RewriteSample.csproj
+++ b/src/Middleware/Rewrite/sample/RewriteSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/Session/samples/SessionSample.csproj b/src/Middleware/Session/samples/SessionSample.csproj
index d57df4cca67a..0c4ff2bdfeb8 100644
--- a/src/Middleware/Session/samples/SessionSample.csproj
+++ b/src/Middleware/Session/samples/SessionSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj b/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj
index 49bd66934d41..e923597c170f 100644
--- a/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj
+++ b/src/Middleware/StaticFiles/samples/StaticFileSample/StaticFileSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj b/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj
index 8f8f6a3e7d3b..50c1a1a00305 100644
--- a/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj
+++ b/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/AutobahnTestApp.csproj
@@ -10,7 +10,7 @@
-
+
diff --git a/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj b/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj
index c50db9dd52aa..d7867b13420d 100644
--- a/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj
+++ b/src/Mvc/test/WebSites/SimpleWebSiteWithWebApplicationBuilderException/SimpleWebSiteWithWebApplicationBuilderException.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj b/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
index 2cf20e54aa71..436444235358 100644
--- a/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
+++ b/src/OpenApi/src/Microsoft.AspNetCore.OpenApi.csproj
@@ -15,7 +15,7 @@
-
+
diff --git a/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj b/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj
index 2bcfdd8510c0..d72fbec117e5 100644
--- a/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj
+++ b/src/Security/Authentication/Certificate/samples/Certificate.Optional.Sample/Certificate.Optional.Sample.csproj
@@ -9,7 +9,7 @@
-
+
diff --git a/src/Security/Authentication/Cookies/samples/CookieSample/CookieSample.csproj b/src/Security/Authentication/Cookies/samples/CookieSample/CookieSample.csproj
index 3d329417c8de..9d454953cf14 100644
--- a/src/Security/Authentication/Cookies/samples/CookieSample/CookieSample.csproj
+++ b/src/Security/Authentication/Cookies/samples/CookieSample/CookieSample.csproj
@@ -8,7 +8,7 @@
-
+
diff --git a/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj b/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj
index 1f66db039ef3..4283cd679098 100644
--- a/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj
+++ b/src/Security/Authentication/Cookies/samples/CookieSessionSample/CookieSessionSample.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/JwtBearerSample.csproj b/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/JwtBearerSample.csproj
index b48b81dc83f9..2033648a7dbf 100644
--- a/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/JwtBearerSample.csproj
+++ b/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/JwtBearerSample.csproj
@@ -9,7 +9,7 @@
-
+
diff --git a/src/Security/Authentication/JwtBearer/samples/MinimalJwtBearerSample/MinimalJwtBearerSample.csproj b/src/Security/Authentication/JwtBearer/samples/MinimalJwtBearerSample/MinimalJwtBearerSample.csproj
index ca9bbc7e0024..dde72cfa416b 100644
--- a/src/Security/Authentication/JwtBearer/samples/MinimalJwtBearerSample/MinimalJwtBearerSample.csproj
+++ b/src/Security/Authentication/JwtBearer/samples/MinimalJwtBearerSample/MinimalJwtBearerSample.csproj
@@ -12,7 +12,7 @@
-
+
diff --git a/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/NegotiateAuthSample.csproj b/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/NegotiateAuthSample.csproj
index d7269017fda6..e2072d29673a 100644
--- a/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/NegotiateAuthSample.csproj
+++ b/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/NegotiateAuthSample.csproj
@@ -9,7 +9,7 @@
-
+
diff --git a/src/Security/Authentication/Negotiate/test/Negotiate.FunctionalTest/Microsoft.AspNetCore.Authentication.Negotiate.FunctionalTest.csproj b/src/Security/Authentication/Negotiate/test/Negotiate.FunctionalTest/Microsoft.AspNetCore.Authentication.Negotiate.FunctionalTest.csproj
index 61db91844255..120f83af3796 100644
--- a/src/Security/Authentication/Negotiate/test/Negotiate.FunctionalTest/Microsoft.AspNetCore.Authentication.Negotiate.FunctionalTest.csproj
+++ b/src/Security/Authentication/Negotiate/test/Negotiate.FunctionalTest/Microsoft.AspNetCore.Authentication.Negotiate.FunctionalTest.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Security/Authentication/OpenIdConnect/samples/MinimalOpenIdConnectSample/MinimalOpenIdConnectSample.csproj b/src/Security/Authentication/OpenIdConnect/samples/MinimalOpenIdConnectSample/MinimalOpenIdConnectSample.csproj
index cd7fc0c18740..8a7daf310b5e 100644
--- a/src/Security/Authentication/OpenIdConnect/samples/MinimalOpenIdConnectSample/MinimalOpenIdConnectSample.csproj
+++ b/src/Security/Authentication/OpenIdConnect/samples/MinimalOpenIdConnectSample/MinimalOpenIdConnectSample.csproj
@@ -10,7 +10,7 @@
-
+
diff --git a/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/OpenIdConnectSample.csproj b/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/OpenIdConnectSample.csproj
index b077e1410e8f..79cd467d6da8 100644
--- a/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/OpenIdConnectSample.csproj
+++ b/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/OpenIdConnectSample.csproj
@@ -14,7 +14,7 @@
-
+
diff --git a/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj b/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj
index 1ca63da0cb1d..dee20b211c03 100644
--- a/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj
+++ b/src/Security/Authentication/WsFederation/samples/WsFedSample/WsFedSample.csproj
@@ -8,7 +8,7 @@
-
+
diff --git a/src/Security/Authentication/samples/SocialSample/SocialSample.csproj b/src/Security/Authentication/samples/SocialSample/SocialSample.csproj
index a3e69ef0fccc..7d5e3eba80db 100644
--- a/src/Security/Authentication/samples/SocialSample/SocialSample.csproj
+++ b/src/Security/Authentication/samples/SocialSample/SocialSample.csproj
@@ -22,7 +22,7 @@
-
+
diff --git a/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj b/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj
index b5638c184300..ffd7aa5bed31 100644
--- a/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj
+++ b/src/Security/CookiePolicy/samples/CookiePolicySample/CookiePolicySample.csproj
@@ -6,7 +6,7 @@
-
+
diff --git a/src/Servers/HttpSys/samples/TlsFeaturesObserve/TlsFeaturesObserve.csproj b/src/Servers/HttpSys/samples/TlsFeaturesObserve/TlsFeaturesObserve.csproj
index c925030be386..49ae74ce0002 100644
--- a/src/Servers/HttpSys/samples/TlsFeaturesObserve/TlsFeaturesObserve.csproj
+++ b/src/Servers/HttpSys/samples/TlsFeaturesObserve/TlsFeaturesObserve.csproj
@@ -8,7 +8,7 @@
-
+
diff --git a/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj b/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj
index 7f266cc41780..3f93c56f7342 100644
--- a/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj
+++ b/src/Servers/IIS/IIS/samples/NativeIISSample/NativeIISSample.csproj
@@ -10,7 +10,7 @@
-
+
diff --git a/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj b/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj
index 92a485611187..a8265942cd4b 100644
--- a/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj
+++ b/src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj
@@ -37,7 +37,7 @@
-
+
diff --git a/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
index 8bf76bfcb01e..5cffd30567de 100644
--- a/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
+++ b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
@@ -22,7 +22,7 @@
-
+
diff --git a/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj b/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj
index b652afc46343..27519f0abec9 100644
--- a/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj
+++ b/src/Servers/IIS/IISIntegration/samples/IISSample/IISSample.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj b/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj
index 4146eacc32d5..aeae244e730a 100644
--- a/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj
+++ b/src/Servers/Kestrel/samples/Http2SampleApp/Http2SampleApp.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj b/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj
index e83f2b0fc85f..1c693a3e89bc 100644
--- a/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj
+++ b/src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj b/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj
index a37cfd60c733..df4aec56fe6c 100644
--- a/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj
+++ b/src/Servers/Kestrel/samples/LargeResponseApp/LargeResponseApp.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj b/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj
index a2c58cefd5bb..8585796b8885 100644
--- a/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj
+++ b/src/Servers/Kestrel/samples/PlaintextApp/PlaintextApp.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj b/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj
index 4c04269f223b..87c908ac3e11 100644
--- a/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj
+++ b/src/Servers/Kestrel/samples/SampleApp/Kestrel.SampleApp.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj b/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj
index 4146eacc32d5..aeae244e730a 100644
--- a/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj
+++ b/src/Servers/Kestrel/samples/SystemdTestApp/SystemdTestApp.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Servers/Kestrel/samples/WebTransportInteractiveSampleApp/WebTransportInteractiveSampleApp.csproj b/src/Servers/Kestrel/samples/WebTransportInteractiveSampleApp/WebTransportInteractiveSampleApp.csproj
index da05772bcd6d..0d307003cdde 100644
--- a/src/Servers/Kestrel/samples/WebTransportInteractiveSampleApp/WebTransportInteractiveSampleApp.csproj
+++ b/src/Servers/Kestrel/samples/WebTransportInteractiveSampleApp/WebTransportInteractiveSampleApp.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/Servers/Kestrel/samples/http2cat/http2cat.csproj b/src/Servers/Kestrel/samples/http2cat/http2cat.csproj
index 061d711e7a6b..733fbc0c6977 100644
--- a/src/Servers/Kestrel/samples/http2cat/http2cat.csproj
+++ b/src/Servers/Kestrel/samples/http2cat/http2cat.csproj
@@ -20,7 +20,7 @@
-
+
diff --git a/src/Servers/Kestrel/stress/HttpStress.csproj b/src/Servers/Kestrel/stress/HttpStress.csproj
index fe3faff60dd5..5b68e96bbc03 100644
--- a/src/Servers/Kestrel/stress/HttpStress.csproj
+++ b/src/Servers/Kestrel/stress/HttpStress.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/Servers/testassets/ServerComparison.TestSites/ServerComparison.TestSites.csproj b/src/Servers/testassets/ServerComparison.TestSites/ServerComparison.TestSites.csproj
index 21d83373f813..6d20a10e5a25 100644
--- a/src/Servers/testassets/ServerComparison.TestSites/ServerComparison.TestSites.csproj
+++ b/src/Servers/testassets/ServerComparison.TestSites/ServerComparison.TestSites.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/SignalR/clients/ts/FunctionalTests/SignalR.Client.FunctionalTestApp.csproj b/src/SignalR/clients/ts/FunctionalTests/SignalR.Client.FunctionalTestApp.csproj
index 3f27c9740b08..2840f73031c6 100644
--- a/src/SignalR/clients/ts/FunctionalTests/SignalR.Client.FunctionalTestApp.csproj
+++ b/src/SignalR/clients/ts/FunctionalTests/SignalR.Client.FunctionalTestApp.csproj
@@ -23,7 +23,7 @@
-
+
diff --git a/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj b/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj
index b24f83501d42..14b6e243a13e 100644
--- a/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj
+++ b/src/SignalR/common/testassets/Tests.Utils/Microsoft.AspNetCore.SignalR.Tests.Utils.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/SignalR/samples/JwtSample/JwtSample.csproj b/src/SignalR/samples/JwtSample/JwtSample.csproj
index f255bb7c5d19..37fd5e52dc1a 100644
--- a/src/SignalR/samples/JwtSample/JwtSample.csproj
+++ b/src/SignalR/samples/JwtSample/JwtSample.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/SignalR/samples/SignalRSamples/SignalRSamples.csproj b/src/SignalR/samples/SignalRSamples/SignalRSamples.csproj
index d739c04eb0ee..7e5c5a80f9c5 100644
--- a/src/SignalR/samples/SignalRSamples/SignalRSamples.csproj
+++ b/src/SignalR/samples/SignalRSamples/SignalRSamples.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/SignalR/samples/SocialWeather/SocialWeather.csproj b/src/SignalR/samples/SocialWeather/SocialWeather.csproj
index ed6506b6d300..18e7909d0496 100644
--- a/src/SignalR/samples/SocialWeather/SocialWeather.csproj
+++ b/src/SignalR/samples/SocialWeather/SocialWeather.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/src/StaticAssets/test/Microsoft.AspNetCore.StaticAssets.Tests.csproj b/src/StaticAssets/test/Microsoft.AspNetCore.StaticAssets.Tests.csproj
index 244ac144d708..f438d3a24de3 100644
--- a/src/StaticAssets/test/Microsoft.AspNetCore.StaticAssets.Tests.csproj
+++ b/src/StaticAssets/test/Microsoft.AspNetCore.StaticAssets.Tests.csproj
@@ -6,7 +6,7 @@
-
+
diff --git a/src/Tools/dotnet-user-jwts/test/dotnet-user-jwts.Tests.csproj b/src/Tools/dotnet-user-jwts/test/dotnet-user-jwts.Tests.csproj
index f98fbdfe70ad..93d823f1e833 100644
--- a/src/Tools/dotnet-user-jwts/test/dotnet-user-jwts.Tests.csproj
+++ b/src/Tools/dotnet-user-jwts/test/dotnet-user-jwts.Tests.csproj
@@ -17,7 +17,7 @@
-
+
diff --git a/src/Validation/test/Microsoft.Extensions.Validation.GeneratorTests/Microsoft.Extensions.Validation.GeneratorTests.csproj b/src/Validation/test/Microsoft.Extensions.Validation.GeneratorTests/Microsoft.Extensions.Validation.GeneratorTests.csproj
index 0e2c5a751c47..de4e385b1be4 100644
--- a/src/Validation/test/Microsoft.Extensions.Validation.GeneratorTests/Microsoft.Extensions.Validation.GeneratorTests.csproj
+++ b/src/Validation/test/Microsoft.Extensions.Validation.GeneratorTests/Microsoft.Extensions.Validation.GeneratorTests.csproj
@@ -11,7 +11,7 @@
-
+
From c85cd514d51c4a45acb2dba571ea2fa9a7bc90be Mon Sep 17 00:00:00 2001
From: wigodbe
Date: Fri, 12 Dec 2025 09:35:22 -0800
Subject: [PATCH 37/37] Fixup
---
.../samples/SampleApp/DefaultBuilder.SampleApp.csproj | 1 -
.../Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj | 1 -
.../TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj | 2 +-
.../Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj | 1 -
.../test/testassets/InProcessWebSite/InProcessWebSite.csproj | 1 -
5 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj b/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj
index c4c8568b2794..85e902af4851 100644
--- a/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj
+++ b/src/DefaultBuilder/samples/SampleApp/DefaultBuilder.SampleApp.csproj
@@ -19,6 +19,5 @@
-
diff --git a/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj b/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
index f286da1b309d..9f0eecaf211c 100644
--- a/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
+++ b/src/Hosting/Hosting/test/Microsoft.AspNetCore.Hosting.Tests.csproj
@@ -28,7 +28,6 @@
-
diff --git a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
index 23ef96da03c0..6ed1a58a265e 100644
--- a/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
+++ b/src/Hosting/TestHost/test/Microsoft.AspNetCore.TestHost.Tests.csproj
@@ -10,7 +10,7 @@
-
+
diff --git a/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj b/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
index 85631caef02a..698e63ddb5fa 100644
--- a/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
+++ b/src/Servers/HttpSys/test/FunctionalTests/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj
@@ -34,7 +34,6 @@
-
diff --git a/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
index 5cffd30567de..0fa1448736dc 100644
--- a/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
+++ b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/InProcessWebSite.csproj
@@ -35,7 +35,6 @@
-