Skip the packages folder in the default excludes
This commit is contained in:
parent
80beccdbdc
commit
94bafb17a3
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ namespace Microsoft.Extensions.ProjectModel.Files
|
|||
public static readonly string[] DefaultResourcesBuiltInPatterns = new[] { @"compiler/resources/**/*", "**/*.resx" };
|
||||
public static readonly string[] DefaultContentsBuiltInPatterns = new[] { @"**/*" };
|
||||
|
||||
public static readonly string[] DefaultBuiltInExcludePatterns = new[] { "bin/**", "obj/**", "**/*.xproj" };
|
||||
public static readonly string[] DefaultBuiltInExcludePatterns = new[] { "bin/**", "obj/**", "**/*.xproj", "packages/**" };
|
||||
|
||||
public static readonly string PackIncludePropertyName = "packInclude";
|
||||
|
||||
|
|
Loading…
Reference in a new issue