From 44fb9fce2c1ee1a86c450702ea3ca2952bf6c5a7 Mon Sep 17 00:00:00 2001 From: David Ringo Date: Thu, 9 Feb 2023 21:20:49 -0500 Subject: [PATCH] ignore/types: add *.sln for msbuild .sln is the extension for Visual Studio Project Soltion files, one of the file types accepted as inputs by MSBuild. PR #2415 --- crates/ignore/src/default_types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index c0ca95b6..edb0af0a 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -160,6 +160,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[ ("motoko", &["*.mo"]), ("msbuild", &[ "*.csproj", "*.fsproj", "*.vcxproj", "*.proj", "*.props", "*.targets", + "*.sln", ]), ("nim", &["*.nim", "*.nimf", "*.nimble", "*.nims"]), ("nix", &["*.nix"]),