summaryrefslogtreecommitdiffstats
path: root/src/configs
diff options
context:
space:
mode:
authorRumia <rumia-san@outlook.com>2021-06-05 22:18:34 +0800
committerGitHub <noreply@github.com>2021-06-05 16:18:34 +0200
commit5edaa90d67f3da6f664c1d99d8dba778bdf3ddbe (patch)
treea404e6b56a4813d89a71e11ae05d676f21889ddb /src/configs
parent14a2ada1ee1db32d2334789587b57f18fe6913b4 (diff)
fix(dotnet): Don't treat folder with .sln file as a .NET project (#2785)
* Don't treat folder with .sln file as a .NET project * Update docs for .NET detect_extensions changes
Diffstat (limited to 'src/configs')
-rw-r--r--src/configs/dotnet.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configs/dotnet.rs b/src/configs/dotnet.rs
index 78c6d8de9..e8558e39b 100644
--- a/src/configs/dotnet.rs
+++ b/src/configs/dotnet.rs
@@ -25,7 +25,7 @@ impl<'a> Default for DotnetConfig<'a> {
style: "blue bold",
heuristic: true,
disabled: false,
- detect_extensions: vec!["sln", "csproj", "fsproj", "xproj"],
+ detect_extensions: vec!["csproj", "fsproj", "xproj"],
detect_files: vec![
"global.json",
"project.json",