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);