From ec199ca83640dfd324cfbf6df613333d5af54abe Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Wed, 1 Oct 2025 09:41:18 -0400 Subject: [PATCH 1/5] Adding skeleton file --- .gitattributes | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..e69de29 -- 2.47.3 From 4f529a48cea4ae7ca3c9cdf3b9fa4c7fa0614bc0 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Wed, 1 Oct 2025 09:43:37 -0400 Subject: [PATCH 2/5] Adding content --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitattributes b/.gitattributes index e69de29..ae41575 100644 --- a/.gitattributes +++ b/.gitattributes @@ -0,0 +1,6 @@ +# Tell GitHub Linguist to ignore C# files for language detection +*.cs linguist-vendored +*.cs linguist-documentation + +# Explicitly identify Rust as the primary language +*.rs linguist-language=Rust -- 2.47.3 From 20f75e737813b0e6fd9fb1f8ccba9c3fbee37894 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Wed, 1 Oct 2025 09:50:43 -0400 Subject: [PATCH 3/5] Still having issues with the language --- .gitattributes | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitattributes b/.gitattributes index ae41575..c497f09 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,10 @@ -# Tell GitHub Linguist to ignore C# files for language detection -*.cs linguist-vendored -*.cs linguist-documentation +# Override specific file types +*.cs linguist-language=Rust +*.sln linguist-documentation +*.csproj linguist-documentation -# Explicitly identify Rust as the primary language -*.rs linguist-language=Rust +# Or vendor all non-Rust files +*.cs linguist-vendored +*.js linguist-vendored +*.py linguist-vendored +# ... etc for any other language files you want to ignore -- 2.47.3 From 9f64d4a7f1c9de84cfbc7b029ab8182f93fd76e3 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Wed, 1 Oct 2025 09:52:01 -0400 Subject: [PATCH 4/5] Some changes --- .gitattributes | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index c497f09..8908797 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,4 +7,3 @@ *.cs linguist-vendored *.js linguist-vendored *.py linguist-vendored -# ... etc for any other language files you want to ignore -- 2.47.3 From 2fa1eefd6a5bb8e49a0a176a03256c256d0b850b Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Wed, 1 Oct 2025 09:52:21 -0400 Subject: [PATCH 5/5] Ignoring .NET related files --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 338e3e6..08dc3d9 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,7 @@ .DS_STORE Storage/ + +*.sln +*.cs +*.csproj -- 2.47.3