mirror of
https://github.com/sp-tarkov/assembly-tool.git
synced 2025-02-12 16:50:44 -05:00
15 lines
385 B
C#
15 lines
385 B
C#
// See https://aka.ms/new-console-template for more information
|
|
using CliFx;
|
|
|
|
namespace ReCodeItCLI;
|
|
|
|
public static class Program
|
|
{
|
|
public static async Task<int> Main() =>
|
|
await new CliApplicationBuilder()
|
|
.AddCommandsFromThisAssembly()
|
|
.AllowDebugMode()
|
|
.SetExecutableName("ReCodeIt")
|
|
.Build()
|
|
.RunAsync();
|
|
} |