From 40a78be975a4acc12ae65e08192f6c2c8cc1ddf2 Mon Sep 17 00:00:00 2001 From: Henrique Graca <999396+hjgraca@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:06:59 +0100 Subject: [PATCH] Updating tracing docs for typo Signed-off-by: Henrique Graca <999396+hjgraca@users.noreply.github.com> --- docs/core/tracing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core/tracing.md b/docs/core/tracing.md index aee48ffb..7f27fcb8 100644 --- a/docs/core/tracing.md +++ b/docs/core/tracing.md @@ -287,7 +287,7 @@ These improvements offer the potential to eliminate build-time trimming warnings For the Tracing utility to work correctly and without trim warnings please add the following to your `.csproj` file -```xaml +```xml @@ -298,4 +298,4 @@ For the Tracing utility to work correctly and without trim warnings please add t Note that when you receive a trim warning, adding the class that generates the warning to TrimmerRootAssembly might not resolve the issue. A trim warning indicates that the class is trying to access some other class that can't be determined until runtime. To avoid runtime errors, add this second class to TrimmerRootAssembly. -To learn more about managing trim warnings, see [Introduction to trim warnings](https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/fixing-warnings) in the Microsoft .NET documentation. \ No newline at end of file +To learn more about managing trim warnings, see [Introduction to trim warnings](https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/fixing-warnings) in the Microsoft .NET documentation.