We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 991aac0 commit 1dc4093Copy full SHA for 1dc4093
src/PostSharp.Engineering.BuildTools/CommonCommandSettings.cs
@@ -7,6 +7,7 @@
7
using System.Collections.Generic;
8
using System.Collections.Immutable;
9
using System.ComponentModel;
10
+using System.Globalization;
11
using System.Linq;
12
using System.Text;
13
@@ -44,7 +45,7 @@ protected virtual void AppendSettings( StringBuilder stringBuilder )
44
45
46
if ( this.Timeout != null )
47
{
- stringBuilder.Append( $"--timeout {this.Timeout} " );
48
+ stringBuilder.Append( CultureInfo.InvariantCulture, $"--timeout {this.Timeout} " );
49
}
50
51
0 commit comments