Skip the packages folder in the default excludes

This commit is contained in:
David Fowler 2015-10-28 02:59:44 -07:00
parent 80beccdbdc
commit 94bafb17a3

View file

@ -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";