Skip to content

Commit

Permalink
ignore .vs and .idea
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Dec 24, 2023
1 parent 57e8249 commit 8b5dee9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<PropertyGroup>
<NoWarn>CS1591</NoWarn>
<Version>26.0.0</Version>
<Version>26.0.1</Version>
<LangVersion>preview</LangVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<PackageTags>Markdown, Snippets, mdsnippets, documentation, MarkdownSnippets</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ public static bool ShouldExcludeDirectory(string path)
var suffix = Path.GetFileName(path).ToLowerInvariant();
return suffix is
".git" or
".vs" or
".idea" or
"packages" or
"node_modules" or
"bin" or
Expand Down

0 comments on commit 8b5dee9

Please sign in to comment.