in build/BuildSteps.cs [358:371]
public static HashSet<string> GetIndexFile(string path)
{
using (var httpClient = new HttpClient())
{
var response = httpClient.GetAsync(path).Result;
if (response.StatusCode == System.Net.HttpStatusCode.NotFound)
{
return new HashSet<string>();
}
return JsonConvert.DeserializeObject<HashSet<string>>(response.Content.ReadAsStringAsync().Result);
}
}