From bcb921cd9d4e94ddc09afcad30833cba58717a17 Mon Sep 17 00:00:00 2001 From: John Gross Date: Fri, 24 Apr 2020 19:27:20 -0700 Subject: [PATCH] Add code to automatically delete the bad DLL --- Torch.Server/Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Torch.Server/Program.cs b/Torch.Server/Program.cs index 2e36d46..b5265a8 100644 --- a/Torch.Server/Program.cs +++ b/Torch.Server/Program.cs @@ -24,8 +24,6 @@ namespace Torch.Server [STAThread] public static void Main(string[] args) { - - Target.Register("FlowDocument"); //Ensures that all the files are downloaded in the Torch directory. var workingDir = new FileInfo(typeof(Program).Assembly.Location).Directory.ToString(); @@ -36,6 +34,7 @@ namespace Torch.Server var badDlls = new[] { "System.Security.Principal.Windows.dll", + "VRage.Platform.Windows.dll" }; try