Skip to content

Commit 1dc4093

Browse files
committed
Warnings.
1 parent 991aac0 commit 1dc4093

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/PostSharp.Engineering.BuildTools/CommonCommandSettings.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using System.Collections.Generic;
88
using System.Collections.Immutable;
99
using System.ComponentModel;
10+
using System.Globalization;
1011
using System.Linq;
1112
using System.Text;
1213

@@ -44,7 +45,7 @@ protected virtual void AppendSettings( StringBuilder stringBuilder )
4445

4546
if ( this.Timeout != null )
4647
{
47-
stringBuilder.Append( $"--timeout {this.Timeout} " );
48+
stringBuilder.Append( CultureInfo.InvariantCulture, $"--timeout {this.Timeout} " );
4849
}
4950
}
5051

0 commit comments

Comments
 (0)