Query Rider TODO etc. comments for a solution, project, or file into console output
The TODO list Tool Window is very useful, but I would very much like the ability to pull that list into a markdown file as tasks for an Obsidian markdown note. Any ideas on how to do this, or must I copy the TODO patterns and filters into my SourceReporting Roslyn based app and apply the filters to all comments in a CSharpSyntaxNode or something?
2 Replies
Couldn't you just like
rg -l TODO > todo.txt
Or whatever search tool you prefer?Yes, I could, thanks, but as I'm busy writing a tool to query C# source, I got stuck on the idea of including it as a feature there. I suppose I could even run my search tool from my code in the query app