We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e0e0e9 + 98661a5 commit abea701Copy full SHA for abea701
Tests/TestRunners/ConverterTestBase.cs
@@ -11,6 +11,7 @@
11
using Microsoft.CodeAnalysis.VisualBasic;
12
using Xunit;
13
using Xunit.Sdk;
14
+using System.Globalization;
15
16
namespace ICSharpCode.CodeConverter.Tests.TestRunners;
17
@@ -28,6 +29,7 @@ public class ConverterTestBase
28
29
30
public ConverterTestBase(string rootNamespace = null)
31
{
32
+ CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.InvariantCulture;
33
_rootNamespace = rootNamespace;
34
var options = new VisualBasicCompilationOptions(OutputKind.DynamicallyLinkedLibrary)
35
.WithOptionExplicit(true)
0 commit comments