From a29326505834b4faf8f01fcdd825497279e1a66f Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sun, 28 Feb 2021 13:22:39 +0100 Subject: [PATCH] Add more files to ignore for watchers in VS Code project --- .../VisualStudioCode/VisualStudioCodeProjectGenerator.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs b/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs index 8a05a4068..038f32b28 100644 --- a/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs +++ b/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs @@ -480,6 +480,9 @@ namespace Flax.Build.Projects.VisualStudioCode // File and folders excludes json.BeginObject("files.exclude"); + json.AddField("**/.git", true); + json.AddField("**/.svn", true); + json.AddField("**/.hg", true); json.AddField("**/.vs", true); json.AddField("**/Binaries", true); json.AddField("**/Cache", true);