From 4e9839e4b73a37704b78f130503bb04bceb453d4 Mon Sep 17 00:00:00 2001 From: Mike McLaughlin Date: Mon, 5 Feb 2024 13:17:04 -0800 Subject: [PATCH] Fix dotnet-trace rundown default --- 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