diff --git a/NuGet.config b/NuGet.config index 50e58d647089..973492be36fe 100644 --- a/NuGet.config +++ b/NuGet.config @@ -5,6 +5,7 @@ + diff --git a/eng/tools/GenerateFiles/Directory.Build.targets.in b/eng/tools/GenerateFiles/Directory.Build.targets.in index e202f98c2f93..9595d23b4930 100644 --- a/eng/tools/GenerateFiles/Directory.Build.targets.in +++ b/eng/tools/GenerateFiles/Directory.Build.targets.in @@ -139,7 +139,7 @@ BeforeTargets="ProcessFrameworkReferences"> diff --git a/global.json b/global.json index 2dfcc7a7acf5..e325b43e1a6c 100644 --- a/global.json +++ b/global.json @@ -1,9 +1,9 @@ { "sdk": { - "version": "8.0.100-preview.5.23275.15" + "version": "8.0.100-preview.6.23305.3" }, "tools": { - "dotnet": "8.0.100-preview.5.23275.15", + "dotnet": "8.0.100-preview.6.23305.3", "runtimes": { "dotnet/x86": [ "$(MicrosoftNETCoreBrowserDebugHostTransportVersion)" diff --git a/src/Mvc/Mvc.Core/src/Routing/ActionConstraintMatcherPolicy.cs b/src/Mvc/Mvc.Core/src/Routing/ActionConstraintMatcherPolicy.cs index 8383b317291a..5fe5152b29bb 100644 --- a/src/Mvc/Mvc.Core/src/Routing/ActionConstraintMatcherPolicy.cs +++ b/src/Mvc/Mvc.Core/src/Routing/ActionConstraintMatcherPolicy.cs @@ -151,7 +151,7 @@ public Task ApplyAsync(HttpContext httpContext, CandidateSet candidateSet) return EvaluateActionConstraintsCore(httpContext, candidateSet, items, startingOrder: null); } - private IReadOnlyList<(int index, ActionSelectorCandidate candidate)>? EvaluateActionConstraintsCore( + private static IReadOnlyList<(int index, ActionSelectorCandidate candidate)>? EvaluateActionConstraintsCore( HttpContext httpContext, CandidateSet candidateSet, IReadOnlyList<(int index, ActionSelectorCandidate candidate)> items,