Skip to content

Commit ccc40b2

Browse files
Update to ASP.NET Core 8 RC 1 (#155)
1 parent d2e8304 commit ccc40b2

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Directory.Packages.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<PackageVersion Include="JetBrains.Annotations" Version="2022.1.0" />
66
<PackageVersion Include="JustEat.HttpClientInterception" Version="3.1.2" />
77
<PackageVersion Include="MartinCostello.Logging.XUnit" Version="0.3.0" />
8-
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0-preview.7.23375.9" />
9-
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="8.0.0-preview.7.23375.9" />
8+
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0-rc.1.23421.29" />
9+
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="8.0.0-rc.1.23421.29" />
1010
<PackageVersion Include="Microsoft.IdentityModel.Protocols" Version="6.10.0" />
1111
<PackageVersion Include="Shouldly" Version="4.1.0" />
12-
<PackageVersion Include="System.Text.Json" Version="8.0.0-preview.7.23375.6" />
12+
<PackageVersion Include="System.Text.Json" Version="8.0.0-rc.1.23419.4" />
1313
</ItemGroup>
1414

1515
</Project>

eng/Versions.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<PatchVersion>0</PatchVersion>
77
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
88
<PackageValidationBaselineVersion>7.0.0</PackageValidationBaselineVersion>
9-
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
10-
<PreReleaseVersionIteration>7</PreReleaseVersionIteration>
11-
<PreReleaseBrandingLabel>Preview $(PreReleaseVersionIteration)</PreReleaseBrandingLabel>
9+
<PreReleaseVersionLabel>rc</PreReleaseVersionLabel>
10+
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
11+
<PreReleaseBrandingLabel>Release Candidate $(PreReleaseVersionIteration)</PreReleaseBrandingLabel>
1212
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
1313
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
1414
<IncludePreReleaseLabelInPackageVersion>true</IncludePreReleaseLabelInPackageVersion>

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"sdk": {
3-
"version": "8.0.100-preview.7.23376.3"
3+
"version": "8.0.100-rc.1.23455.8"
44
},
55

66
"tools": {
7-
"dotnet": "8.0.100-preview.7.23376.3"
7+
"dotnet": "8.0.100-rc.1.23455.8"
88
},
99

1010
"msbuild-sdks": {

src/AspNet.Security.OpenId/OpenIdAuthenticationInitializer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
33
* See https://github.com/aspnet-contrib/AspNet.Security.OpenId.Providers
44
* for more information concerning the license and the contributors participating to this project.
@@ -112,7 +112,7 @@ public void PostConfigure([NotNull] string? name, [NotNull] TOptions options)
112112
throw new ArgumentException("The authority cannot contain a fragment or a query string.", nameof(options));
113113
}
114114

115-
if (!options.Authority.OriginalString.EndsWith("/", StringComparison.Ordinal))
115+
if (!options.Authority.OriginalString.EndsWith('/'))
116116
{
117117
options.Authority = new Uri(options.Authority.OriginalString + "/", UriKind.Absolute);
118118
}

0 commit comments

Comments
 (0)