From 873b639106e84ab27ebbc927c761a192f301650c Mon Sep 17 00:00:00 2001 From: "Kenneth R. Jones" <144077605+JonesWebConsulting@users.noreply.github.com> Date: Mon, 17 Feb 2025 14:03:13 -0600 Subject: [PATCH] Ignore .vsconfig when outside of .vs dir Sometimes .vsconfig is located outside the .vs/ directory and won't be picked up by the ignore pattern above. Confirmed on Unity 6. --- Unity.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index efec83d8..788b9ea3 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -26,6 +26,8 @@ # Visual Studio cache directory .vs/ +# Sometimes .vsconfig is located outside the .vs/ directory and won't be picked up by the ignore pattern above. +.vsconfig # Gradle cache directory .gradle/