diff --git a/Directory.Build.props b/Directory.Build.props index 2b4af9d..b7e1c9f 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ true - 3.1.0-beta.2 + 3.1.0 latest NU5118 diff --git a/readme.md b/readme.md index 53c59ae..41d0477 100644 --- a/readme.md +++ b/readme.md @@ -20,7 +20,7 @@ The `Install-Package Fody` is required since NuGet always defaults to the oldest ## How to use it -By default, `ConfigureAwait.Fody` doesn't change any of your code. You have to explicitly set a configure await value at the assembly, class, or method level. +By default, `ConfigureAwait.Fody` doesn't change any code. Set a configure await value at the assembly, class, or method level. * `[assembly: Fody.ConfigureAwait(false)]` - Assembly level * `[Fody.ConfigureAwait(false)]` - Class or method level @@ -31,12 +31,19 @@ By default, `ConfigureAwait.Fody` doesn't change any of your code. You have to e Add `` to [FodyWeavers.xml](https://github.com/Fody/Home/blob/master/pages/usage.md#add-fodyweaversxml) ```xml - ``` +It is also possible set the default ContinueOnCapturedContext in the xml config: + +```xml + + + +``` + ## Example