Merge pull request #22875 from Microsoft/jjh/nativeconsoleon

Windows: Turn on native console by default
This commit is contained in:
Sebastiaan van Stijn 2016-05-23 21:19:54 +02:00
commit d97f6ab5f1

View file

@ -83,11 +83,13 @@ func useNativeConsole() bool {
return false return false
} }
// TODO Windows. The native emulator still has issues which // Must have a post-TP5 RS1 build of Windows Server 2016/Windows 10 for
// mean it shouldn't be enabled for everyone. Change this next line to true // the native console to be usable.
// to change the default to "enable if available". In the meantime, users if osv.Build < 14350 {
// can still try it out by using USE_NATIVE_CONSOLE env variable. return false
return false }
return true
} }
// getNativeConsole returns the console modes ('state') for the native Windows console // getNativeConsole returns the console modes ('state') for the native Windows console