Add decompile command

This commit is contained in:
Yoshi Askharoun
2024-02-22 11:13:31 -06:00
parent 02078f1793
commit acd127c3a1
3 changed files with 137 additions and 0 deletions
+4
View File
@@ -15,6 +15,10 @@ internal class Program
.WithAlias("c")
.WithDescription("Compiles the given source to UIB.");
config.AddCommand<DecompileCommand>("decompile")
.WithAlias("d")
.WithDescription("Decompiles the given compiled UIX to a source langauge.");
#if DEBUG
config.PropagateExceptions();
config.ValidateExamples();