Documents Repository.cs

This commit is contained in:
Cyberboss
2017-10-21 20:57:42 -04:00
parent e5fa4c4e65
commit 5860ec9c4c
7 changed files with 374 additions and 158 deletions
+2 -2
View File
@@ -192,7 +192,7 @@ namespace TGServerService
Directory.CreateDirectory(GameDirA);
Directory.CreateDirectory(GameDirB);
var Config = new RepoConfig(false);
var Config = GetCachedRepoConfig();
if (Config != null) {
foreach (var I in Config.StaticDirectoryPaths)
@@ -354,7 +354,7 @@ namespace TGServerService
resurrectee = GetStagingDir();
var Config = new RepoConfig(false);
var Config = GetCachedRepoConfig();
var deleteExcludeList = new List<string> { InterfaceDLLName };
deleteExcludeList.AddRange(Config.StaticDirectoryPaths);
deleteExcludeList.AddRange(Config.DLLPaths);