mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
25 lines
762 B
C#
25 lines
762 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using CommandLine;
|
|
|
|
namespace Wabbajack.CLI.Verbs
|
|
{
|
|
[Verb("changelog", HelpText = "Generate a changelog using two different versions of the same Modlist.")]
|
|
public class Changelog : AVerb
|
|
{
|
|
[Option("original", Required = true, HelpText = "The original/previous modlist")]
|
|
public string? Original { get; set; }
|
|
|
|
[Option("update", Required = true, HelpText = "The current/updated modlist")]
|
|
public string? Update { get; set; }
|
|
|
|
[Option('o', "output", Required = false, HelpText = "The output file")]
|
|
public string? Output { get; set; }
|
|
|
|
protected override Task<int> Run()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|