Skip to content

Commit a2e886f

Browse files
committed
fix lines
1 parent 1ac7f25 commit a2e886f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/azure/sdk/aspnetcore-guidance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Complete the following steps to register the services you need:
4444
<!-- markdownlint-disable MD023 -->
4545
## [Minimal API](#tab/api)
4646
47-
:::code language="csharp" source="snippets/aspnetcore-guidance/MinApiSample/Program.cs" range="44-59" highlight="1,3,4":::
47+
:::code language="csharp" source="snippets/aspnetcore-guidance/MinApiSample/Program.cs" range="44-59" highlight="1,4,5":::
4848
4949
<!-- markdownlint-disable MD023 -->
5050
## [Blazor](#tab/blazor)
@@ -104,7 +104,7 @@ In the following sections, complete the steps using the `appsettings.Development
104104
105105
1. Update the the `Program.cs` file to retrieve the JSON file configurations using `IConfiguration` and pass them into your service registrations:
106106
107-
:::code language="csharp" source="snippets/aspnetcore-guidance/MinApiSample/Program.cs" range="13-31" highlight="6-7":::
107+
:::code language="csharp" source="snippets/aspnetcore-guidance/MinApiSample/Program.cs" range="13-31" highlight="4-5,7-8,10-11":::
108108
109109
### Configure Azure defaults and retries
110110
@@ -116,7 +116,7 @@ At some point, you may want to change default Azure client configurations global
116116
117117
2. In the `Program.cs` file, the `ConfigureDefaults` extension method `AddAzureClients` retrieves the default settings and applies them to your services:
118118
119-
:::code language="csharp" source="snippets/aspnetcore-guidance/MinApiSample/Program.cs" range="13-31" highlight="6-7":::
119+
:::code language="csharp" source="snippets/aspnetcore-guidance/MinApiSample/Program.cs" range="13-31" highlight="16-17":::
120120
121121
## Configure logging
122122

0 commit comments

Comments
 (0)