diff --git a/src/NBench.Execution/CommandLine.cs b/src/NBench.Execution/CommandLine.cs index bf9a76f8..0ee442b4 100644 --- a/src/NBench.Execution/CommandLine.cs +++ b/src/NBench.Execution/CommandLine.cs @@ -166,21 +166,21 @@ public static string FormatCapturedArguments(bool includeOutput = true) string output = ""; if (HasProperty(TracingKey)) - output += $"{TracingKey}={GetSingle(TracingKey)} "; + output += $"{TracingKey} {GetSingle(TracingKey)} "; if (HasProperty(ConcurrentKey)) { - output += $"{ConcurrentKey}={GetSingle(ConcurrentKey)} "; + output += $"{ConcurrentKey} {GetSingle(ConcurrentKey)} "; } if (HasProperty(ExcludeKey)) { - output += $"{ExcludeKey}={string.Join(",", GetProperty(ExcludeKey))} "; + output += $"{ExcludeKey} {string.Join(",", GetProperty(ExcludeKey))} "; } if (HasProperty(IncludeKey)) { - output += $"{IncludeKey}={string.Join(",", GetProperty(IncludeKey))} "; + output += $"{IncludeKey} {string.Join(",", GetProperty(IncludeKey))} "; } if (HasProperty(ConfigurationKey)) @@ -190,7 +190,7 @@ public static string FormatCapturedArguments(bool includeOutput = true) if (HasProperty(OutputKey) && includeOutput) { - output += $"{OutputKey}={GetSingle(OutputKey)} "; + output += $"{OutputKey} {GetSingle(OutputKey)} "; } if (HasProperty(DiagnosticsKey))