An open API service indexing awesome lists of open source software.

https://github.com/nikouu/roslyn-analyzers-learning

Repo for learning about Roslyn Analyzers
https://github.com/nikouu/roslyn-analyzers-learning

dotnet roslyn roslyn-analyzer

Last synced: 7 months ago
JSON representation

Repo for learning about Roslyn Analyzers

Awesome Lists containing this project

README

          

# Roslyn Analyzers Learning

Space to learn about Roslyn analyzers.

## Notes

- You can package an analyzer in your own library it seems.
- The "[..)" notation means that the starting index is part of the span, but the ending index is not.

## Links
- https://learn.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/
- https://learn.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/syntax-visualizer?tabs=csharp
- https://learn.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/work-with-syntax
- https://learn.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/work-with-semantics
- https://learn.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/work-with-workspace
- https://learn.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/compiler-api-model
- https://learn.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/tutorials/how-to-write-csharp-analyzer-code-fix
- https://roslynquoter.azurewebsites.net/
- [Missing "View Directed Syntax Graph" in the syntax visualizer](https://github.com/dotnet/roslyn/issues/15691)