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
- Host: GitHub
- URL: https://github.com/nikouu/roslyn-analyzers-learning
- Owner: nikouu
- License: mit
- Created: 2024-10-09T07:07:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-09T23:19:55.000Z (11 months ago)
- Last Synced: 2025-03-28T21:05:46.722Z (7 months ago)
- Topics: dotnet, roslyn, roslyn-analyzer
- Language: C#
- Homepage:
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)