You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to be able to configure Fody.ConfigureAwait(false) globally using a Directory.Build.props file.
This can usually be done by adding an item group in this file (or per project in the .csproj file):
Is the proposal related to a problem
I would like to be able to configure
Fody.ConfigureAwait(false)
globally using a Directory.Build.props file.This can usually be done by adding an item group in this file (or per project in the .csproj file):
However parameters are limited to string parameters only, so this won't work with the
bool continueOnCapturedContext
parameter.Describe the solution
Add a constructor on https://github.com/Fody/ConfigureAwait/blob/master/ConfigureAwait/ConfigureAwaitAttribute.cs which accepts a string value for
continueOnCapturedContext
and converts in into abool
.The text was updated successfully, but these errors were encountered: