Skip to content

Commit 591e1d4

Browse files
pschiagerSyntaxC4
authored andcommitted
Shifted a line one enumerated point up
1 parent 735b83f commit 591e1d4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

articles/app-service/webjobs-sdk-get-started.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,14 @@ In this section, you set up console logging that uses the [ASP.NET Core logging
8686
```powershell
8787
Install-Package Microsoft.Extensions.Logging.Console -version <3_X_VERSION>
8888
```
89+
In this command, replace `<3_X_VERSION>` with a supported 3.x version of the package.
8990

9091
1. In *Program.cs*, add a `using` statement:
9192

9293
```cs
9394
using Microsoft.Extensions.Logging;
9495
```
9596

96-
In this command, replace `<3_X_VERSION>` with a supported 3.x version of the package.
97-
9897
1. Call the [`ConfigureLogging`](/dotnet/api/microsoft.aspnetcore.hosting.webhostbuilderextensions.configurelogging) method on [`HostBuilder`](/dotnet/api/microsoft.extensions.hosting.hostbuilder). The [`AddConsole`](/dotnet/api/microsoft.extensions.logging.consoleloggerextensions.addconsole) method adds console logging to the configuration.
9998

10099
```cs

0 commit comments

Comments
 (0)