LINQPad.CodeAnalysis icon indicating copy to clipboard operation
LINQPad.CodeAnalysis copied to clipboard

.NET Compiler Platform helpers and utilities for LINQPad - most of the functionality in this library has now been integrated into LINQPad directly

Results 7 LINQPad.CodeAnalysis issues
Sort by recently updated
recently updated
newest added

You could add the Roslyn Compiler platform within the code analysis plugin. Doing so, adding support for code fixes could be easy to do. All it would need is to...

And possibly also to the syntax graph. Also provide some means (context menu?) to view diagnostics for a given node if they exist. Use the same method as displaying all...

Show a list of all diagnostics after a semantic model has been generated. Perhaps use background color or an icon to indicate severity. Should probably be done as a custom...

Reasoning is that they may take a while on large syntax trees - make sure not to process if they're off.

http://www.linqpad.net/nugetsamples.aspx

Other queries (especially ones already open - can we ask for named query tabs?), assemblies, etc. You can obviously already do this directly by using the Roslyn APIs, but some...

Add the option to highlight changes between the original input query and the syntax tree output in the `SyntaxTreePanel` text view. This will be valuable when dealing with analyzers and...