Copy missing dll

This commit is contained in:
Brant Martin
2019-06-06 15:35:54 -04:00
parent ed298cdfb0
commit 0a852c49e8

View File

@@ -66,6 +66,12 @@ quit";
if (!File.Exists(apiTarget))
File.Copy(apiSource, apiTarget);
var protoSource = Path.Combine(basePath, "DedicatedServer64", "protobuf-net.dll");
var protoTarget = Path.Combine(basePath, "protobuf-net.dll");
if(!File.Exists(protoTarget))
File.Copy(protoSource, protoTarget);
_config = InitConfig();
if (!_config.Parse(args))
return false;