We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following does not produce a diagnostic from VSTHRD003:
class Program { static Task t; static JoinableTaskFactory jtf; static void Main(string[] args) { jtf.Run(async delegate { await t; }); } }
It seems VSTHRD003 only triggers when the Task is a local variable.
Task
The text was updated successfully, but these errors were encountered:
Add test for field awaited in JTF run delegate
3dc9df8
Closes microsoft#254
a052d16
af8206c
Bump xunit.runner.visualstudio from 2.5.6 to 2.5.7 (#254)
4d78e3c
Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.5.6 to 2.5.7. - [Release notes](https://github.com/xunit/visualstudio.xunit/releases) - [Commits](xunit/visualstudio.xunit@2.5.6...2.5.7) --- updated-dependencies: - dependency-name: xunit.runner.visualstudio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
No branches or pull requests
The following does not produce a diagnostic from VSTHRD003:
It seems VSTHRD003 only triggers when the
Task
is a local variable.The text was updated successfully, but these errors were encountered: