Skip to content

Commit

Permalink
Fix Compilation error on nightly run by specifying a FormatProvider (m…
Browse files Browse the repository at this point in the history
  • Loading branch information
pieandcakes committed Feb 5, 2018
1 parent 45852f9 commit d7e8da8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SSHDebugPS/Connection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public string AttachToProcess(int pid, string preAttachCommand)
gdbStart.ProcessId = pid; // indicates an attach operation
gdbStart.PreLaunchCommand = preAttachCommand;
_gdbserver = _remoteSystem.Services.GdbServer.Start(gdbStart); // throws on failure
return "localhost:" + _gdbserver.StartInfo.LocalPort.ToString();
return "localhost:" + _gdbserver.StartInfo.LocalPort.ToString(CultureInfo.InvariantCulture);
}

internal bool IsOSX()
Expand Down

0 comments on commit d7e8da8

Please sign in to comment.