Skip to content

Commit cd55248

Browse files
Update to ASP.NET Core 11 preview 2 (#385)
Update to preview 2 of ASP.NET Core 11.
1 parent f19ddc1 commit cd55248

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Directory.Packages.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<PackageVersion Include="JetBrains.Annotations" Version="2025.2.4" />
55
<PackageVersion Include="JustEat.HttpClientInterception" Version="5.1.2" />
66
<PackageVersion Include="MartinCostello.Logging.XUnit" Version="0.7.1" />
7-
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="11.0.0-preview.1.26104.118" />
8-
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="11.0.0-preview.1.26104.118" />
7+
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="11.0.0-preview.2.26159.112" />
8+
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="11.0.0-preview.2.26159.112" />
99
<PackageVersion Include="Microsoft.IdentityModel.Protocols" Version="8.14.0" />
1010
<PackageVersion Include="Shouldly" Version="4.3.0" />
1111
</ItemGroup>
12-
</Project>
12+
</Project>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
88
<PackageValidationBaselineVersion Condition=" '$(EnablePackageValidation)' == 'true' AND '$(PackageValidationBaselineVersion)' == '' ">11.0.0</PackageValidationBaselineVersion>
99
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
10-
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
10+
<PreReleaseVersionIteration>2</PreReleaseVersionIteration>
1111
<PreReleaseBrandingLabel>Preview $(PreReleaseVersionIteration)</PreReleaseBrandingLabel>
1212
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
1313
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"sdk": {
3-
"version": "11.0.100-preview.1.26104.118",
3+
"version": "11.0.100-preview.2.26159.112",
44
"allowPrerelease": true,
55
"rollForward": "major"
66
},
77

88
"tools": {
9-
"dotnet": "11.0.100-preview.1.26104.118"
9+
"dotnet": "11.0.100-preview.2.26159.112"
1010
},
1111

1212
"msbuild-sdks": {

src/AspNet.Security.OpenId/OpenIdAuthenticationInitializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void PostConfigure([NotNull] string? name, [NotNull] TOptions options)
9696
throw new ArgumentException("The authority cannot contain a fragment or a query string.", nameof(options));
9797
}
9898

99-
if (!options.Authority.OriginalString.EndsWith('/'))
99+
if (!options.Authority.OriginalString.EndsWith('/', StringComparison.Ordinal))
100100
{
101101
options.Authority = new Uri(options.Authority.OriginalString + "/", UriKind.Absolute);
102102
}

0 commit comments

Comments
 (0)