Skip to content

Commit cb6865b

Browse files
authored
Merge pull request #203131 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents f5a4012 + 49cbfc9 commit cb6865b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

articles/active-directory/develop/scenario-web-app-sign-user-app-configuration.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ To add authentication with the Microsoft identity platform (formerly Azure AD v2
261261
}).AddMicrosoftIdentityUI();
262262
```
263263
264-
3. In the `Configure` method in *Startup.cs*, enable authentication with a call to `app.UseAuthentication();`
264+
3. In the `Configure` method in *Startup.cs*, enable authentication with a call to `app.UseAuthentication();` and `app.MapControllers();`.
265265
266266
```c#
267267
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
@@ -270,6 +270,9 @@ To add authentication with the Microsoft identity platform (formerly Azure AD v2
270270
// more code here
271271
app.UseAuthentication();
272272
app.UseAuthorization();
273+
274+
app.MapRazorPages();
275+
app.MapControllers();
273276
// more code here
274277
}
275278
```

articles/azure-resource-manager/management/resource-name-rules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ In the following tables, the term alphanumeric refers to:
677677
> | Entity | Scope | Length | Valid Characters |
678678
> | --- | --- | --- | --- |
679679
> | deployments | resource group | 1-64 | Alphanumerics, underscores, parentheses, hyphens, and periods. |
680-
> | resourcegroups | subscription | 1-90 | Letters or digits as defined by the [Char.IsLetterOrDigit](/dotnet/api/system.char.isletterordigit) function.<br><br>Valid characters are members of the following categories in [UnicodeCategory](/dotnet/api/system.globalization.unicodecategory):<br>**UppercaseLetter**,<br>**LowercaseLetter**,<br>**TitlecaseLetter**,<br>**ModifierLetter**,<br>**OtherLetter**,<br>**DecimalDigitNumber**.<br><br>Can't end with period. |
680+
> | resourcegroups | subscription | 1-90 | Underscores, hyphens, periods, and letters or digits as defined by the [Char.IsLetterOrDigit](/dotnet/api/system.char.isletterordigit) function.<br><br>Valid characters are members of the following categories in [UnicodeCategory](/dotnet/api/system.globalization.unicodecategory):<br>**UppercaseLetter**,<br>**LowercaseLetter**,<br>**TitlecaseLetter**,<br>**ModifierLetter**,<br>**OtherLetter**,<br>**DecimalDigitNumber**.<br><br>Can't end with period. |
681681
> | tagNames | resource | 1-512 | Can't use:<br>`<>%&\?/` or control characters |
682682
> | tagNames / tagValues | tag name | 1-256 | All characters. |
683683
> | templateSpecs | resource group | 1-90 | Alphanumerics, underscores, parentheses, hyphens, and periods. |

0 commit comments

Comments
 (0)