Skip to content

Commit 44ae64c

Browse files
authored
Merge pull request #87209 from jmprieur/master
Updating the quickstart, following-up changes to the backing sample
2 parents 8fd7801 + 6a66ed2 commit 44ae64c

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

articles/active-directory/develop/quickstart-v2-netcore-daemon.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ This quickstart requires [.NET Core 2.2](https://www.microsoft.com/net/download/
3636
3737
> [!div renderon="docs" class="sxs-lookup"]
3838
>
39-
> You have two options to start your quickstart application:
40-
> * [Express] [Option 1: Register and auto configure your app and then download your code sample](#option-1-register-and-auto-configure-your-app-and-then-download-your-code-sample)
41-
> * [Manual] [Option 2: Register and manually configure your application and code sample](#option-2-register-and-manually-configure-your-application-and-code-sample)
39+
> You have two options to start your quickstart application: Express (Option 1 below), and Manual (Option 2)
4240
>
4341
> ### Option 1: Register and auto configure your app and then download your code sample
4442
>
@@ -77,12 +75,12 @@ This quickstart requires [.NET Core 2.2](https://www.microsoft.com/net/download/
7775
7876
#### Step 2: Download your Visual Studio project
7977

80-
[Download the Visual Studio project](https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2/archive/msal3x.zip)
78+
[Download the Visual Studio project](https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2/archive/master.zip)
8179

8280
#### Step 3: Configure your Visual Studio project
8381

8482
1. Extract the zip file to a local folder close to the root of the disk, for example, **C:\Azure-Samples**.
85-
1. Open the solution in Visual Studio - **daemon-console.sln** (optional).
83+
1. Open the solution in Visual Studio - **1-Call-MSGraph\daemon-console.sln** (optional).
8684
1. Edit **appsettings.json** and replace the values of the fields `ClientId`, `Tenant` and `ClientSecret` with the following:
8785

8886
```json
@@ -142,7 +140,7 @@ https://login.microsoftonline.com/Enter_the_Tenant_Id_Here/adminconsent?client_i
142140
If you're using Visual Studio, press **F5** to run the application, otherwise, run the application via command prompt or console:
143141

144142
```console
145-
cd {ProjectFolder}\daemon-console
143+
cd {ProjectFolder}\daemon-console\1-Call-Graph
146144
dotnet run
147145
```
148146

@@ -163,7 +161,7 @@ MSAL ([Microsoft.Identity.Client](https://www.nuget.org/packages/Microsoft.Ident
163161
You can install MSAL.NET by running the following command in Visual Studio's **Package Manager Console**:
164162

165163
```powershell
166-
Install-Package Microsoft.Identity.Client -Pre
164+
Install-Package Microsoft.Identity.Client
167165
```
168166

169167
Alternatively, if you are not using Visual Studio, you can run the following command to add MSAL to your project:
@@ -218,8 +216,15 @@ For more information, please see the [reference documentation for `AcquireTokenF
218216

219217
## Next steps
220218

219+
To learn more about daemon applications, see the scenario landing page
220+
221+
> [!div class="nextstepaction"]
222+
> [Daemon application that calls web APIs](scenario-daemon-overview.md)
223+
224+
For the daemon application tutorial, see:
225+
221226
> [!div class="nextstepaction"]
222-
> [.NET Core daemon sample](https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2)
227+
> [Daemon .NET Core console tutorial](https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2)
223228
224229
Learn more about permissions and consent:
225230

@@ -231,9 +236,6 @@ To know more about the auth flow for this scenario, see the Oauth 2.0 client cre
231236
> [!div class="nextstepaction"]
232237
> [Client credentials Oauth flow](v2-oauth2-client-creds-grant-flow.md)
233238
234-
> [!div class="nextstepaction"]
235-
> [Client credential flows with MSAL.NET](https://aka.ms/msal-net-client-credentials)
236-
237239
Help us improve the Microsoft identity platform. Tell us what you think by completing a short two-question survey.
238240

239241
> [!div class="nextstepaction"]

0 commit comments

Comments
 (0)