6 references to Utils
Microsoft.Deployment.DotNet.Releases (6)
Product.cs (2)
183await Utils.GetLatestFileAsync(path, downloadLatest, ReleasesJson).ConfigureAwait(false); 203using var stream = new MemoryStream(await Utils.s_httpClient.GetByteArrayAsync(address).ConfigureAwait(false));
ProductCollection.cs (2)
81using var stream = new MemoryStream(await Utils.s_httpClient.GetByteArrayAsync(releasesIndexUrl).ConfigureAwait(false)); 101await Utils.GetLatestFileAsync(path, downloadLatest, ReleasesIndexDefaultUrl).ConfigureAwait(false);
ReleaseFile.cs (2)
118await Utils.DownloadFileAsync(Address, tempPath).ConfigureAwait(false); 122string actualHash = Utils.GetFileHash(tempPath, s_defaultHashAlgorithm);