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
{{ message }}
This repository was archived by the owner on Nov 8, 2018. It is now read-only.
I have a method need implement from the interface, and this implement is not async. So I write the following signature: public ValueTask<SongInfo> FindAsync()
But it report AvoidAsyncSuffix. It work fine with: public Task<SongInfo> FindAsync()
I think the ValueTask should be support.
Addition: I see the recent update, but the package in nuget is really out of date. Could you update the nuget package?