seems to be configuration rework

This commit is contained in:
zznty
2022-09-09 16:48:14 +07:00
parent 0a40b1fe0f
commit f8a3647308
6 changed files with 105 additions and 89 deletions

View File

@@ -71,10 +71,6 @@ namespace Torch.Server
[Display(Name = "No GUI", Description = "Do not show the Torch UI.", GroupName = "Window")]
public bool NoGui { get => _noGui; set => Set(value, ref _noGui); }
/// <inheritdoc />
[XmlIgnore, Arg("waitforpid", "Makes Torch wait for another process to exit.")]
public string WaitForPID { get; set; }
/// <inheritdoc />
[Display(Name = "Update Torch", Description = "Check every start for new versions of torch.", GroupName = "Server")]
public bool GetTorchUpdates { get => _getTorchUpdates; set => Set(value, ref _getTorchUpdates); }