Severity Code Description Project File Line Suppression State
Warning CA2007 Consider calling ConfigureAwait on the awaited task PowerLauncher C:\Repos\PowerToys\src\modules\launcher\PowerLauncher\MainWindow.xaml.cs 305 Active
This commit is contained in:
ryanbodrug-microsoft 2020-06-18 08:58:06 -07:00
parent 10d6a1fa54
commit a29baf19d0

View File

@ -313,7 +313,7 @@ namespace PowerLauncher
private async Task DelayedCheck(DateTime latestTimeOfTyping)
{
await Task.Delay(millisecondsToWait);
await Task.Delay(millisecondsToWait).ConfigureAwait(false);
if (latestTimeOfTyping.Equals(s_lastTimeOfTyping))
{
await System.Windows.Application.Current.Dispatcher.BeginInvoke(new Action(() =>