mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
We no longer need nexus_link_cache
so remove remaining references
This commit is contained in:
parent
655c60b505
commit
1fb0451396
@ -41,8 +41,6 @@ namespace Wabbajack.Common
|
||||
public static readonly Extension ESM = new Extension(".esm");
|
||||
public static readonly Extension ESP = new Extension(".esp");
|
||||
|
||||
public static string NexusCacheDirectory = "nexus_link_cache";
|
||||
|
||||
public static string WABBAJACK_INCLUDE = "WABBAJACK_INCLUDE";
|
||||
public static string WABBAJACK_ALWAYS_ENABLE = "WABBAJACK_ALWAYS_ENABLE";
|
||||
public static string WABBAJACK_NOMATCH_INCLUDE = "WABBAJACK_NOMATCH_INCLUDE";
|
||||
|
@ -14,8 +14,7 @@ namespace Wabbajack.Lib.CompilationSteps
|
||||
{
|
||||
_cruftFiles = new HashSet<string>
|
||||
{
|
||||
"7z.dll", "7z.exe", "vfs_staged_files\\", "nexus.key_cache", "patch_cache\\",
|
||||
Consts.NexusCacheDirectory + "\\"
|
||||
"7z.dll", "7z.exe", "vfs_staged_files\\", "nexus.key_cache", "patch_cache\\"
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -246,9 +246,6 @@ namespace Wabbajack.Lib.NexusApi
|
||||
headers.Add(("Accept", "application/json"));
|
||||
headers.Add(("Application-Name", Consts.AppName));
|
||||
headers.Add(("Application-Version", $"{Assembly.GetEntryAssembly()?.GetName()?.Version ?? new Version(0, 1)}"));
|
||||
|
||||
if (!Directory.Exists(Consts.NexusCacheDirectory))
|
||||
Directory.CreateDirectory(Consts.NexusCacheDirectory);
|
||||
}
|
||||
|
||||
public static async Task<NexusApiClient> Get(string? apiKey = null)
|
||||
|
Loading…
Reference in New Issue
Block a user