Skip to content

Commit 29ef3d6

Browse files
authored
1, 2, done! [Skip CI]
1 parent 6af0557 commit 29ef3d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ You can get started quickly with this package, and later migrate to the full Ser
1313

1414
### Getting started
1515

16-
Add [the NuGet package](https://nuget.org/packages/serilog.extensions.logging.file) to the `"dependencies"` section of your `project.json` file:
16+
**1.** Add [the NuGet package](https://nuget.org/packages/serilog.extensions.logging.file) to the `"dependencies"` section of your `project.json` file:
1717

1818
```json
1919
"dependencies": {
2020
"Serilog.Extensions.Logging.File": "1.0.0"
2121
}
2222
```
2323

24-
In your `Startup` class's `Configure()` method, call `AddFile()` on the provided `loggerFactory`.
24+
**2.** In your `Startup` class's `Configure()` method, call `AddFile()` on the provided `loggerFactory`.
2525

2626
```csharp
2727
public void Configure(IApplicationBuilder app,
@@ -31,7 +31,7 @@ In your `Startup` class's `Configure()` method, call `AddFile()` on the provided
3131
loggerFactory.AddFile("Logs/myapp-{Date}.txt");
3232
```
3333

34-
The framework will inject `ILogger` instances into controllers and other classes:
34+
**Done!** The framework will inject `ILogger` instances into controllers and other classes:
3535

3636
```csharp
3737
class HomeController : Controller

0 commit comments

Comments
 (0)