Skip to content

Commit 148bf45

Browse files
authored
Add NuGet packages to getting started. (dotnet#41818)
1 parent 8e4ad2d commit 148bf45

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

docs/core/extensions/logging.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Logging in C#
33
author: IEvangelist
44
description: Learn about app logging provided by the Microsoft.Extensions.Logging NuGet package in C#.
55
ms.author: dapine
6-
ms.date: 03/14/2024
6+
ms.date: 07/17/2024
77
---
88

99
# Logging in C# and .NET
@@ -12,7 +12,12 @@ ms.date: 03/14/2024
1212

1313
## Get started
1414

15-
This first example shows the basics, but it's only suitable for a trivial console app. In the next section you see how to improve the code considering scale, performance, configuration and typical programming patterns.
15+
This first example shows the basics, but it's only suitable for a trivial console app. This sample console app relies on the following NuGet packages:
16+
17+
- [Microsoft.Extensions.Logging](https://www.nuget.org/packages/Microsoft.Extensions.Logging)
18+
- [Microsoft.Extensions.Logging.Console](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Console)
19+
20+
In the next section you see how to improve the code considering scale, performance, configuration and typical programming patterns.
1621

1722
:::code language="csharp" source="snippets/logging/getting-started/Program.cs":::
1823

0 commit comments

Comments
 (0)