From 09bfdc7455aeb54dbff77dd7ecfbaa55a89cabee Mon Sep 17 00:00:00 2001 From: Noah Falk Date: Fri, 1 Nov 2024 15:26:10 -0700 Subject: [PATCH] Add System.Diagnostics.DiagnosticSource netstandard guidance (#43269) * Add System.Diagnostics.DiagnosticSource netstandard guidance --- .../distributed-tracing-instrumentation-walkthroughs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/diagnostics/distributed-tracing-instrumentation-walkthroughs.md b/docs/core/diagnostics/distributed-tracing-instrumentation-walkthroughs.md index 6351d5e1b3f3d..6a0f350db2407 100644 --- a/docs/core/diagnostics/distributed-tracing-instrumentation-walkthroughs.md +++ b/docs/core/diagnostics/distributed-tracing-instrumentation-walkthroughs.md @@ -29,7 +29,7 @@ dotnet new console Applications that target .NET 5 and later already have the necessary distributed tracing APIs included. For apps targeting older .NET versions, add the [System.Diagnostics.DiagnosticSource NuGet package](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/) -version 5 or greater. +version 5 or greater. For libraries targeting netstandard, we recommend referencing the oldest version of the package which is still supported and contains the APIs your library needs. ```dotnetcli dotnet add package System.Diagnostics.DiagnosticSource