From 6165aa2d1727532d5f5f9443e44ae2976afb22ae Mon Sep 17 00:00:00 2001 From: David Wallace Date: Thu, 16 Apr 2026 12:05:52 -0400 Subject: [PATCH] feat(miner): add C# and .NET file extensions to READABLE_EXTENSIONS Adds .cs, .csproj, .sln, .razor, and .cshtml so C#/.NET projects are indexed by the project miner. .razor/.cshtml are analogous to the already-supported .jsx/.tsx. Co-Authored-By: Claude Sonnet 4.6 --- mempalace/miner.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mempalace/miner.py b/mempalace/miner.py index 713c3b1..dd1e21b 100644 --- a/mempalace/miner.py +++ b/mempalace/miner.py @@ -48,6 +48,12 @@ READABLE_EXTENSIONS = { ".csv", ".sql", ".toml", + # C# / .NET + ".cs", + ".csproj", + ".sln", + ".razor", + ".cshtml", } SKIP_FILENAMES = {