Update Bootstrap.cs to remove Cache

This commit is contained in:
Momo the Monster 2023-04-20 09:48:54 -07:00 committed by GitHub
parent 376fbad6e2
commit a3ef61cb95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ public static async Task AddResolver()
return;
}
var url = $"{bootstrapMatch.Groups[1].Value}&cache={Guid.NewGuid()}";
var url = bootstrapMatch.Groups[1].Value;
var targetFile = Path.Combine(Path.GetTempPath(), $"resolver-{DateTime.Now.ToString("yyyyMMddTHHmmss")}.unitypackage");
@ -89,4 +89,4 @@ public static async Task<string> GetRemoteString(string url)
}
}
}
}
}