diff --git a/src/CodeQLToolkit.Features.Pack/Commands/Targets.old/HelloJeongsooCommandTarget.cs b/src/CodeQLToolkit.Features.Pack/Commands/Targets.old/HelloJeongsooCommandTarget.cs deleted file mode 100644 index d00c479..0000000 --- a/src/CodeQLToolkit.Features.Pack/Commands/Targets.old/HelloJeongsooCommandTarget.cs +++ /dev/null @@ -1,48 +0,0 @@ -using CodeQLToolkit.Shared.Utils; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using YamlDotNet.Serialization; -using YamlDotNet.Serialization.NamingConventions; - -namespace CodeQLToolkit.Features.Pack.Commands.Targets -{ - public class HelloJeongsooCommandTarget : CommandTarget - { - - public int Times { get; set; } - - - public override void Run() - { - for (int i = 0; i < Times; i++) - { - Console.WriteLine($"Hello! My Base Target is: {Base}"); - } - - - var c = new QLTConfig() - { - Base = Base - }; - - if (!File.Exists(c.CodeQLConfigFilePath)) - { - ProcessUtils.DieWithError($"Cannot read values from missing file {c.CodeQLConfigFilePath}"); - } - - var config = c.FromFile(); - - - Console.WriteLine($"---------current settings---------"); - Console.WriteLine($"CodeQL CLI Version: {config.CodeQLCLI}"); - Console.WriteLine($"CodeQL Standard Library Version: {config.CodeQLStandardLibrary}"); - Console.WriteLine($"CodeQL CLI Bundle Version: {config.CodeQLCLIBundle}"); - Console.WriteLine($"----------------------------------"); - Console.WriteLine("(hint: use `qlt codeql set` to modify these values.)"); - - } - } -}