From 3ba482add81fd49cf7719a396466e059e29f5dd0 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Thu, 30 Apr 2026 09:04:01 -0500 Subject: [PATCH 1/3] Add .lscache/ to .gitignore C# Dev Kit creates .lscache directories for language server cache files. Ignore them so they are not accidentally committed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e676f2f4fc8..a6865bcfe52 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ TestResult-*.xml TestResult-*.csv .vs/ .vscode/ +.lscache/ .gradle/ Resource.designer.cs logcat-*.txt From aecca936a612f7ad04c796bd2bad3f4500aa3a7f Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Thu, 30 Apr 2026 09:04:31 -0500 Subject: [PATCH 2/3] Fix .lscache entry: it is a file, not a directory Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a6865bcfe52..a27ddba8444 100644 --- a/.gitignore +++ b/.gitignore @@ -13,7 +13,7 @@ TestResult-*.xml TestResult-*.csv .vs/ .vscode/ -.lscache/ +.lscache .gradle/ Resource.designer.cs logcat-*.txt From 5968e26f8954645543fcd5e0dc6c36783fc21181 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Thu, 30 Apr 2026 15:53:47 -0500 Subject: [PATCH 3/3] Use *.lscache glob pattern and sort with other wildcards Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a27ddba8444..77ef9330505 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.lscache *.userprefs *.user bin @@ -13,7 +14,6 @@ TestResult-*.xml TestResult-*.csv .vs/ .vscode/ -.lscache .gradle/ Resource.designer.cs logcat-*.txt