Skip to content

Commit 77b0ff7

Browse files
author
Tiago Brenck
committed
- code snippet indentation
1 parent d158ed2 commit 77b0ff7

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

1-WebApp-OIDC/1-6-SignOut/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,9 @@ The ASP.NET Core OpenIdConnect middleware enables your app to intercept the call
5959
public static IServiceCollection AddAzureAdV2Authentication(this IServiceCollection services,
6060
IConfiguration configuration)
6161
{
62-
...
6362
services.Configure<OpenIdConnectOptions>(AzureADDefaults.OpenIdScheme, options =>
6463
{
65-
...
6664
options.Authority = options.Authority + "/v2.0/";
67-
...
6865

6966
options.Events.OnRedirectToIdentityProviderForSignOut = async context =>
7067
{

Microsoft.Identity.Web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This library contains a set of reusable classes useful in Web Applications and W
77
The library contains helper classes to:
88

99
- **Bootstrap the web resource from the Startup.cs file** in your web application by just calling a few methods
10-
- `AddAzureAdV2Authentication` to add authentication with the Microsoft Identity platform (AAD v2.0), including managing the authority validation, and the sign-out.
10+
- `AddAzureAdV2Authentication` to add authentication with the Microsoft Identity platform (AAD v2.0), including managing the authority validation.
1111

1212
```CSharp
1313
services.AddAzureAdV2Authentication();

0 commit comments

Comments
 (0)