From c83a37c20a5fd93d66ccd857dbb8ab6a7aeffc64 Mon Sep 17 00:00:00 2001 From: KD Date: Wed, 1 Oct 2025 09:48:02 -0400 Subject: [PATCH 1/2] Change language of project (#184) * Adding skeleton file * Adding content --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ae41575 --- /dev/null +++ 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 From 309d76785a245c1bbf53766d2b77833e45b56362 Mon Sep 17 00:00:00 2001 From: KD Date: Wed, 1 Oct 2025 09:55:04 -0400 Subject: [PATCH 2/2] Language change (#185) * Adding skeleton file * Adding content * Still having issues with the language * Some changes * Ignoring .NET related files --- .gitattributes | 13 ++++++++----- .gitignore | 4 ++++ 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitattributes b/.gitattributes index ae41575..6dfad31 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,9 @@ -# 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 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 338e3e6..08dc3d9 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,7 @@ .DS_STORE Storage/ + +*.sln +*.cs +*.csproj