Fixing the exclude pattern used by the Migration to exclude WEB SDK globs.

This commit is contained in:
Livar 2017-02-24 01:12:35 -08:00
parent 3dc266f21c
commit 480f2dd377

View file

@ -10,6 +10,7 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
return content.Equals("wwwroot") ||
content.Contains("web.config") ||
content.Equals("**/*.cshtml") ||
content.Equals(@"**\*.cshtml") ||
content.Contains(".json");
}
}