Skip to content

Commit 78d3c71

Browse files
committed
fixing warning
1 parent fbcd3f8 commit 78d3c71

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.openpublishing.publish.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@
135135
"branch_mapping": {}
136136
},
137137
{
138-
"path_to_root": "ms-identity-dotnetcore-b2c-account-management",
138+
"path_to_root": "ms-identity-dotnetcore-b2c-account-management-archive",
139139
"url": "https://github.com/Azure-Samples/ms-identity-dotnetcore-b2c-account-management",
140-
"branch": "master",
140+
"branch": "archive",
141141
"branch_mapping": {}
142142
},
143143
{

articles/active-directory-b2c/microsoft-graph-operations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,11 +262,11 @@ The `RunAsync` method in the _Program.cs_ file:
262262
1. Initializes the auth provider using [OAuth 2.0 client credentials grant](../active-directory/develop/v2-oauth2-client-creds-grant-flow.md) flow. With the client credentials grant flow, the app is able to get an access token to call the Microsoft Graph API.
263263
1. Sets up the Microsoft Graph service client with the auth provider:
264264

265-
:::code language="csharp" source="~/ms-identity-dotnetcore-b2c-account-management/archive/src/Program.cs" id="ms_docref_set_auth_provider":::
265+
:::code language="csharp" source="~/ms-identity-dotnetcore-b2c-account-management-archive/src/Program.cs" id="ms_docref_set_auth_provider":::
266266

267267
The initialized _GraphServiceClient_ is then used in _UserService.cs_ to perform the user management operations. For example, getting a list of the user accounts in the tenant:
268268

269-
:::code language="csharp" source="~/ms-identity-dotnetcore-b2c-account-management/archive/src/Services/UserService.cs" id="ms_docref_get_list_of_user_accounts":::
269+
:::code language="csharp" source="~/ms-identity-dotnetcore-b2c-account-management-archive/src/Services/UserService.cs" id="ms_docref_get_list_of_user_accounts":::
270270

271271
[Make API calls using the Microsoft Graph SDKs](/graph/sdks/create-requests) includes information on how to read and write information from Microsoft Graph, use `$select` to control the properties returned, provide custom query parameters, and use the `$filter` and `$orderBy` query parameters.
272272

0 commit comments

Comments
 (0)