HelperVSCodePossibleExtension and
Person Title
This commit is contained in:
12
Worker.cs
12
Worker.cs
@ -43,6 +43,7 @@ public class Worker : BackgroundService
|
||||
ConsoleKey.S,
|
||||
ConsoleKey.T,
|
||||
ConsoleKey.U,
|
||||
ConsoleKey.V,
|
||||
ConsoleKey.Z,
|
||||
ConsoleKey.Delete
|
||||
};
|
||||
@ -94,15 +95,23 @@ public class Worker : BackgroundService
|
||||
_Logger.LogInformation("F) Clipboard (All Directories and File Name Without Extension),");
|
||||
_Logger.LogInformation("G) Genealogical Data Communication");
|
||||
_Logger.LogInformation("H) Hardcoded file search and sort,");
|
||||
// I
|
||||
_Logger.LogInformation("J) Set Date from Json Entry");
|
||||
_Logger.LogInformation("K) Kanban support");
|
||||
_Logger.LogInformation("L) Log Merge (APC Log [0-9(8)]_*.log),");
|
||||
_Logger.LogInformation("N) Create Note Files,");
|
||||
_Logger.LogInformation("M) Markdown Wiki Link Verification,");
|
||||
// O
|
||||
// P
|
||||
// Q
|
||||
_Logger.LogInformation("R) Rename to old, copy, delete old");
|
||||
_Logger.LogInformation("S) Set Date from Zip Entry");
|
||||
_Logger.LogInformation("T) Too long rename");
|
||||
_Logger.LogInformation("U) Links for Hugo");
|
||||
_Logger.LogInformation("V) VSCode Hope Sort");
|
||||
// W
|
||||
// X
|
||||
// Y
|
||||
_Logger.LogInformation("Z) Zip file(s) by date,");
|
||||
_Logger.LogInformation("Delete) Delete empty directories,");
|
||||
consoleKey = Console.ReadKey().Key;
|
||||
@ -153,6 +162,9 @@ public class Worker : BackgroundService
|
||||
case ConsoleKey.U:
|
||||
Helpers.HelperMarkdown.MarkdownConvertLinksForHugo(_AppSettings, _Logger, _Args);
|
||||
break;
|
||||
case ConsoleKey.V:
|
||||
Helpers.HelperVSCodePossibleExtension.Sort(_Logger, _Args);
|
||||
break;
|
||||
case ConsoleKey.Z:
|
||||
_ = Helpers.HelperZipFilesByDate.ZipFilesByDate(_Logger, _Args[0]);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user