Skip to content

Commit

Permalink
set culture to "invariant"
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkovalchik committed Jan 15, 2019
1 parent e6728ea commit 59c94de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions RawTools/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ class Program
{
static void Main(string[] args)
{
System.Globalization.CultureInfo.DefaultThreadCurrentCulture = System.Globalization.CultureInfo.InvariantCulture;
System.Globalization.CultureInfo.DefaultThreadCurrentUICulture = System.Globalization.CultureInfo.InvariantCulture;

if (Environment.OSVersion.Platform == PlatformID.Unix | Environment.OSVersion.Platform == PlatformID.MacOSX)
{
Console.Out.NewLine = "\n\n";
Expand Down
2 changes: 1 addition & 1 deletion RawTools/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("12.1.2019.0")]
[assembly: AssemblyFileVersion("15.1.2019.0")]

[assembly: AssemblyInformationalVersion("1.4.1")]

0 comments on commit 59c94de

Please sign in to comment.