Skip to content

Commit

Permalink
Exclude node_modules and similar folders from default globbing - Closes
Browse files Browse the repository at this point in the history
  • Loading branch information
CZEMacLeod committed Sep 7, 2021
1 parent 3217506 commit 9f10420
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,11 @@
<Compile Remove="App_Code\*.cs" />
<Content Include="App_Code\*.cs" />
</ItemGroup>

<!-- Exclude node_modules and similar folders from default globbing - Closes #19 -->
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);**\node_modules\**;node_modules\**</DefaultItemExcludes>
<DefaultItemExcludes>$(DefaultItemExcludes);**\jspm_packages\**;jspm_packages\**</DefaultItemExcludes>
<DefaultItemExcludes>$(DefaultItemExcludes);**\bower_components\**;bower_components\**</DefaultItemExcludes>
</PropertyGroup>
</Project>

0 comments on commit 9f10420

Please sign in to comment.