Changing the world one async void return type at a time.
It's actually quite simple, this Visual Studio Extension detects the following code snippet:
public async void SomeMethod()
{
...
}
and helps you to refactor it into
public async Task SomeMethod()
{
...
}