My solutions for Exercism C# Track. Feel free to open issues for questions, comments, or suggestions.
Deleting bin and obj directories:
find . -type d \( -name bin -o -name obj \) -exec rm -rf {} +
Adding projects to solution
dotnet sln add <directory>
Running tests:
./.github/run.sh <directory>
Released under Apache License v2.0.