Firelance 0.1.5.2

- FilterDirectory renamed and moved to ManifestFilter.
- Refactored ManifestFilter
This commit is contained in:
2020-07-10 14:15:32 +01:00
parent afcb89ad50
commit 5b6a8e8349
3 changed files with 90 additions and 101 deletions
+6 -2
View File
@@ -214,8 +214,12 @@ namespace DevConsole
Console.WriteLine($"Full: {fullPath}");
Console.WriteLine($"Relative Path: {relPath}");
Console.WriteLine("Please enter the pattern for the inclusion filter and then\nthe exclusion filter:");
PrintListValues(Helpers.Filters.FilterDirectory(fullPath, Console.ReadLine(), Console.ReadLine()));
Console.WriteLine("Please enter the filter patterns required.");
Console.Write("\nInclusion Filter: ");
var i = Console.ReadLine();
Console.Write("Exclusion Filter: ");
var e = Console.ReadLine();
PrintListValues(new ManifestFilter().Build(fullPath, i, e));
//FSManipulation.CopyDirectory(
// fullPath,