You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CliOption(Required = false, Description = "Path to the game directory. Should be the root of the game's repository.", ValidationRules = CliValidationRules.ExistingDirectory)]
public string? GamePath { get; set; }
[CliOption(Required = false, Description = "Path to the columns file generated by export-columns.", ValidationRules = CliValidationRules.ExistingFile)]
public string? ColumnsFile { get; set; }
[CliOption(Required = false, Description = "Path to the output file.")]
public string? OutputPath { get; set; }
public Task RunAsync()
{
var token = Parent.Init();
var sheets = ColDefReader.FromInputs(GamePath, ColumnsFile);