Hotfix for assembly loading issues

This commit is contained in:
John Gross
2018-07-19 11:57:30 -07:00
parent b829e90edb
commit 21e45b5e45
3 changed files with 19 additions and 5 deletions

View File

@@ -1,7 +1,13 @@
using System;
using System.Diagnostics;
using System.IO;
using System.IO.Compression;
using System.Net;
using System.Reflection;
using System.ServiceProcess;
using System.Text;
using System.Threading;
using NLog;
using NLog.Targets;
using Torch.Utils;
@@ -23,7 +29,7 @@ namespace Torch.Server
if (!TorchLauncher.IsTorchWrapped())
{
TorchLauncher.Launch(Assembly.GetEntryAssembly().FullName,args, binDir);
TorchLauncher.Launch(Assembly.GetEntryAssembly().FullName, args, binDir);
return;
}
@@ -41,4 +47,4 @@ namespace Torch.Server
initializer.Run();
}
}
}
}