controlflow / resharper-postfix

ReSharper Postfix Templates plugin
MIT License
127 stars 12 forks source link

.cawait for ConfigureAwait false #63

Open UnoSD opened 7 years ago

UnoSD commented 7 years ago

For library code, ConfigureAwait(false) is used everywhere; would be nice to have a postfix template like .await but including that, too:

MethodAsync().cawait -> await MethodAsync().ConfigureAwait(false)

Thanks.