Skip to content

Commit d24734f

Browse files
committed
Suppress
1 parent eaa1109 commit d24734f

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

src/SetupProcessFake/GlobalSuppressions.cs

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/SetupProcessFake/Program.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212

1313
if (args.Any(a => a == "delay"))
1414
{
15+
#pragma warning disable CA2007 // Consider calling ConfigureAwait on the awaited task
1516
await Task.Delay(TimeSpan.FromSeconds(5));
17+
#pragma warning restore CA2007 // Consider calling ConfigureAwait on the awaited task
1618
}
1719

1820
return 0;

0 commit comments

Comments
 (0)