From 3f135e7036f0b8f1ff1e89f10f1acd85b470659a Mon Sep 17 00:00:00 2001 From: prime31 Date: Fri, 15 Feb 2019 09:50:39 -0800 Subject: [PATCH] switch to replacing project_name to avoid ** --- .vscode/settings.json | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index a301ce6..c1b69bd 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,21 +8,20 @@ "csharp.referencesCodeLens.enabled": false, "files.exclude": { - "**/.[^v]*": true, // hide any file that start with a '.' but keep the .vscode folder + "**/.[^v]*": true, // hide any files that start with a '.' but keep the .vscode folder + ".vs": true, // Visual Studio settings "getFNA.sh": true, "MonoGameContent.targets": true, - ".vs": true, - "**/obj": true, - "**/bin": true, + "project_name/obj": true, + "project_name/bin": true, ".gitignore": true, ".gitmodules": true, "README.md": true, "fnalibs": true, - "**/CompiledContent/bin": true, - "**/CompiledContent/obj": true, - "**/CompiledContent/.mgstats": true, - "**/*.csproj.user": true, - "**/*.csproj": true, + "project_name/CompiledContent/bin": true, + "project_name/CompiledContent/obj": true, + "project_name/CompiledContent/.mgstats": true, + "project_name/*.csproj*": true, "*.sln": true, "FNA/[^src]*": true, // hide everything but the src folder "Nez.FNA/[^Nez]*": true, // hide everything bug the Nez folder @@ -32,4 +31,4 @@ "Nez.FNA/Nez/Nez.Xamarin*": true, "Nez.FNA/Nez/Nez.Naming*": true, } -} \ No newline at end of file +}