Skip to content

Commit fb1e5f2

Browse files
Update to ASP.NET 5 preview 8
Update to preview 8 of ASP.NET 5.
1 parent 3f7b482 commit fb1e5f2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Directory.Packages.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<PackageVersion Include="JetBrains.Annotations" Version="2020.1.0" />
55
<PackageVersion Include="JustEat.HttpClientInterception" Version="3.0.0" />
66
<PackageVersion Include="MartinCostello.Logging.XUnit" Version="0.1.0" />
7-
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="5.0.0-preview.7.*" />
8-
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Twitter" Version="5.0.0-preview.7.*" />
9-
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.0-preview.7.*" />
10-
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="5.0.0-preview.7.*" />
7+
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="5.0.0-preview.8.*" />
8+
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Twitter" Version="5.0.0-preview.8.*" />
9+
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.0-preview.8.*" />
10+
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="5.0.0-preview.8.*" />
1111
<PackageVersion Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0" />
1212
<PackageVersion Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="6.6.0" />
1313
<PackageVersion Include="Moq" Version="4.14.5" />

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"tools": {
3-
"dotnet": "5.0.100-preview.7.20366.6"
3+
"dotnet": "5.0.100-preview.8.20417.9"
44
},
55

66
"msbuild-sdks": {

samples/Mvc.Client/Controllers/AuthenticationController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public async Task<IActionResult> SignIn([FromForm] string provider)
4040

4141
[HttpGet("~/signout")]
4242
[HttpPost("~/signout")]
43-
public IActionResult SignOut()
43+
public override SignOutResult SignOut()
4444
{
4545
// Instruct the cookies middleware to delete the local cookie created
4646
// when the user agent is redirected from the external identity provider

src/AspNet.Security.OAuth.VisualStudio/VisualStudioAuthenticationDefaults.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static class VisualStudioAuthenticationDefaults
1717
/// <summary>
1818
/// Default value for <see cref="AuthenticationScheme.Name"/>.
1919
/// </summary>
20-
public const string AuthenticationScheme = "Visual Studio Online";
20+
public const string AuthenticationScheme = "VisualStudioOnline";
2121

2222
/// <summary>
2323
/// Default value for <see cref="AuthenticationScheme.DisplayName"/>.

0 commit comments

Comments
 (0)