0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-12 17:10:45 -05:00

15 lines
385 B
C#
Raw Normal View History

2024-06-19 21:11:42 -04:00
// See https://aka.ms/new-console-template for more information
using CliFx;
namespace ReCodeItCLI;
2024-06-19 21:11:42 -04:00
public static class Program
{
public static async Task<int> Main() =>
await new CliApplicationBuilder()
.AddCommandsFromThisAssembly()
.AllowDebugMode()
2024-06-20 22:19:03 -04:00
.SetExecutableName("ReCodeIt")
2024-06-19 21:11:42 -04:00
.Build()
.RunAsync();
}