From 38209cc13e871db9deac85b7c469d27b51c9de9b Mon Sep 17 00:00:00 2001 From: Mike McLaughlin Date: Tue, 6 Feb 2024 09:36:20 -0800 Subject: [PATCH] Fix dotnet-trace rundown default (#4499) --- src/Tools/dotnet-trace/Profile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tools/dotnet-trace/Profile.cs b/src/Tools/dotnet-trace/Profile.cs index 89b723636..2d43bc6a8 100644 --- a/src/Tools/dotnet-trace/Profile.cs +++ b/src/Tools/dotnet-trace/Profile.cs @@ -22,7 +22,7 @@ namespace Microsoft.Diagnostics.Tools.Trace public string Description { get; } - public bool Rundown { get; set; } + public bool Rundown { get; set; } = true; public static void MergeProfileAndProviders(Profile selectedProfile, List providerCollection, Dictionary enabledBy) { -- 2.34.1