Ejemplo n.º 1
0
 /// <inheritdoc/>
 protected override void WriteCustomArguments(ref AliceToolsArgumentsWriter writer)
 {
     string.IsNullOrWhiteSpace(OutputPath).TrueThrowPropertyInvalidOperation(nameof(OutputPath));
     if (IsOldGame)
     {
         writer.Write("--old");
     }
     writer.Write($"-o {OutputPath}");
 }
 /// <inheritdoc/>
 protected override void WriteCustomArguments(ref AliceToolsArgumentsWriter writer)
 {
     string.IsNullOrWhiteSpace(OutputPath).TrueThrowPropertyInvalidOperation(nameof(OutputPath));
     if (DecryptOnly)
     {
         writer.Write("--decrypt");
     }
     if (Split)
     {
         writer.Write("--split");
     }
     writer.Write($"-o {OutputPath}");
 }
 /// <inheritdoc/>
 protected override void WriteCustomArguments(ref AliceToolsArgumentsWriter writer)
 {
 }
 /// <inheritdoc/>
 protected override void WriteCustomArguments(ref AliceToolsArgumentsWriter writer)
 {
     string.IsNullOrWhiteSpace(ComparedFile).TrueThrowPropertyInvalidOperation(nameof(ComparedFile));
     writer.Write(ComparedFile);
 }