Update Bootstrap.cs to remove Cache
This commit is contained in:
parent
376fbad6e2
commit
a3ef61cb95
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ public static async Task AddResolver()
|
||||||
return;
|
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");
|
var targetFile = Path.Combine(Path.GetTempPath(), $"resolver-{DateTime.Now.ToString("yyyyMMddTHHmmss")}.unitypackage");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue