From ab70815ea276658e38c916563b00cdc86fda88e6 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sun, 11 Jun 2017 19:50:39 -0700 Subject: [PATCH] Add "msbuild" filetype for msbuild related files This commit adds a "msbuild" filetype grouping, with a few different file types being mapped to this grouping: - MSBuild project files: .csproj, .vcxproj, .fsproj, .proj - MSBuild shared property files: .props - MSBuild shared targets files: .targets --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index df6ef65..436f56d 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -155,6 +155,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("matlab", &["*.m"]), ("mk", &["mkfile"]), ("ml", &["*.ml"]), + ("msbuild", &["*.csproj", "*.fsproj", "*.vcxproj", "*.proj", "*.props", "*.targets"]), ("nim", &["*.nim"]), ("nix", &["*.nix"]), ("objc", &["*.h", "*.m"]),