Support debugging when on IPv6 network (Node's "Debugger listening" message is phrased differently there)

This commit is contained in:
SteveSandersonMS
2016-07-27 09:50:43 +01:00
parent f2f67fe880
commit c892f7da35

View File

@@ -251,7 +251,7 @@ If you haven't yet installed node-inspector, you can do so as follows:
private static bool IsDebuggerListeningMessage(string message) private static bool IsDebuggerListeningMessage(string message)
{ {
return message.StartsWith("Debugger listening on port ", StringComparison.OrdinalIgnoreCase); return message.StartsWith("Debugger listening ", StringComparison.OrdinalIgnoreCase);
} }
private FileSystemWatcher BeginFileWatcher(string rootDir) private FileSystemWatcher BeginFileWatcher(string rootDir)