diff --git a/tools/Microsoft.TemplateSearch.TemplateDiscovery/NuGet/NuGetPackSourceCheckerFactory.cs b/tools/Microsoft.TemplateSearch.TemplateDiscovery/NuGet/NuGetPackSourceCheckerFactory.cs index 90d4c27571d..253f4094d6b 100644 --- a/tools/Microsoft.TemplateSearch.TemplateDiscovery/NuGet/NuGetPackSourceCheckerFactory.cs +++ b/tools/Microsoft.TemplateSearch.TemplateDiscovery/NuGet/NuGetPackSourceCheckerFactory.cs @@ -80,7 +80,9 @@ public async Task CreatePackSourceCheckerAsync(CommandArgs co private static async Task LoadExistingCacheAsync(CommandArgs config, CancellationToken cancellationToken) { Verbose.WriteLine($"Loading existing cache information."); - const string uri = "https://dotnet-templating.azureedge.net/search/NuGetTemplateSearchInfoVer2.json"; + // aka.ms link should point to https://dotnet-templating-hrdkctdrgkacbyek.b01.azurefd.net/search/NuGetTemplateSearchInfoVer2.json or + // whatever the future absolute URL for the JSON file is. + const string uri = "https://aka.ms/dotnet/templating/searchcacheurl"; FileInfo? cacheFileLocation = config.DiffOverrideSearchCacheLocation;