Skip to content

Commit 33061a7

Browse files
committed
done
1 parent d911fda commit 33061a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

powerapps-docs/developer/data-platform/webapi/quick-start-blazor-server-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ You'll authenticate and use <xref:System.Net.Http.HttpClient> to send a `GET` re
7979

8080
1. Click **Next**.
8181

82-
> [!IMPORTANT]
83-
> Don't do anything in this step. Do not click **Finish**.
82+
> [!NOTE]
83+
> You don't need to do anything in this step.
8484
8585
This step provides capabilities to connect to Microsoft Graph or another API, but this isn't necessary for this quickstart.
8686

@@ -187,7 +187,7 @@ Add the following below `"AllowedHosts": "*"` where `<your org>` represents the
187187
188188
### Program.cs
189189

190-
1. To access the value of the Web API base URI in the settings, add the line below commented with `// Get BaseUri from appsettings.json` in the `Main` method below <br />`var builder = WebApplication.CreateBuilder(args);`
190+
1. To access the value of the Web API base URI in the settings, add the line below commented with `// Get BaseUri from appsettings.json` in the `Main` method below the line: <br />`var builder = WebApplication.CreateBuilder(args);`
191191

192192
```csharp
193193
public static void Main(string[] args)
@@ -198,7 +198,7 @@ Add the following below `"AllowedHosts": "*"` where `<your org>` represents the
198198
string dataverseBaseUri = builder.Configuration.GetSection("DataverseConfig").GetValue<string>("BaseUri");
199199
```
200200

201-
1. Add the following two lines below <br />`.AddMicrosoftIdentityWebApp(builder.Configuration.GetSection("AzureAd"))`
201+
1. Add the following two lines below the line: <br />`.AddMicrosoftIdentityWebApp(builder.Configuration.GetSection("AzureAd"))`
202202

203203
```csharp
204204
// Add services to the container.

0 commit comments

Comments
 (0)