From c1632b6b2013b40b9c7e4ee1a8d6d76fc04f00ca Mon Sep 17 00:00:00 2001 From: John Gross Date: Thu, 23 Apr 2020 13:03:29 -0700 Subject: [PATCH] Don't serialize temporary autostart flag --- Torch.Server/TorchConfig.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Torch.Server/TorchConfig.cs b/Torch.Server/TorchConfig.cs index f1a6ab7..12905c3 100644 --- a/Torch.Server/TorchConfig.cs +++ b/Torch.Server/TorchConfig.cs @@ -71,6 +71,7 @@ namespace Torch.Server /// Temporary flag to automatically start the server only on the next run /// [Arg("autostart", "Start the server immediately.")] + [XmlIgnore] public bool TempAutostart { get; set; } ///