in GenerateToolingFeed/Helper.cs [60:67]
public static string GetShaFileContent(string os, string architecture, string cliVersion, string filePath, bool isMinified = false, string linkSuffix = "")
{
string rid = GetRuntimeIdentifier(isMinified, os, architecture);
string fileName = $"Azure.Functions.Cli.{rid}{linkSuffix}.{cliVersion}.zip.sha2";
string path = Path.Combine(filePath, fileName);
return File.ReadAllText(path);
}