This way will prevent the compiler warning instead of muting it:
For anybody interested, if you ever need to circumvent such a compiler warning:
public async Task DoStuff
{
// This method should stay empty
// Following statement will prevent a compiler warning:
await Task.FromResult(0);
}