ARTICLE AD BOX
Consider async method
public async Task StartAsync(CancellationToken cancellationToken) { }Visual Studio 2022 correctly shows the Warning CS1998 "This async method lacks 'await' operators and will run synchronously."
But Visual Studio 2026 completely ignores the issue. Same .NET 8 project, same file.
Both VS instances are Professional with the latest updates.
Is there any way to enable CS1998 the Analyzer on VS 2026?

