Skip to content

Commit 1e6f6a3

Browse files
authored
ignore .vs and .idea (#685)
1 parent 57e8249 commit 1e6f6a3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33
<PropertyGroup>
44
<NoWarn>CS1591</NoWarn>
5-
<Version>26.0.0</Version>
5+
<Version>26.0.1</Version>
66
<LangVersion>preview</LangVersion>
77
<AssemblyVersion>1.0.0</AssemblyVersion>
88
<PackageTags>Markdown, Snippets, mdsnippets, documentation, MarkdownSnippets</PackageTags>

src/MarkdownSnippets/Reading/Exclusions/DefaultDirectoryExclusions.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ public static bool ShouldExcludeDirectory(string path)
77
var suffix = Path.GetFileName(path).ToLowerInvariant();
88
return suffix is
99
".git" or
10+
".vs" or
11+
".idea" or
1012
"packages" or
1113
"node_modules" or
1214
"bin" or

0 commit comments

Comments
 (0)