Skip tone/duration on beep on LINUX

This commit is contained in:
Jason Shirk (POWERSHELL) 2016-07-07 12:07:06 -07:00
parent 372d69583f
commit c0b16d7bf5

View File

@ -656,7 +656,11 @@ namespace Microsoft.PowerShell
case BellStyle.None:
break;
case BellStyle.Audible:
#if LINUX
Console.Beep();
#else
Console.Beep(Options.DingTone, Options.DingDuration);
#endif
break;
case BellStyle.Visual:
// TODO: flash prompt? command line?