Is there a way to make Visual Studio highlight or colorize objects that implement IDisposable or IAsyncDisposable, so they stand out differently.
For example, highlight somevariable in the following so the author knows it needs to follow best practice lifecycle patterns.
var somevariable = new BitMap();
The question is quite similar to Recognize disposable objects in visual studio, but code analysis is deprecated and hunting through call graphs is silly.