diff --git a/eng/Directory.Packages.props b/eng/Directory.Packages.props index bad0bf5f7eb08..70ee26ea29789 100644 --- a/eng/Directory.Packages.props +++ b/eng/Directory.Packages.props @@ -105,7 +105,7 @@ - + @@ -315,7 +315,7 @@ Infra --> - + diff --git a/src/Features/Core/Portable/SymbolSearch/Windows/SymbolSearchUpdateEngine.Update.cs b/src/Features/Core/Portable/SymbolSearch/Windows/SymbolSearchUpdateEngine.Update.cs index b92f182e18d83..b9e396e2ce685 100644 --- a/src/Features/Core/Portable/SymbolSearch/Windows/SymbolSearchUpdateEngine.Update.cs +++ b/src/Features/Core/Portable/SymbolSearch/Windows/SymbolSearchUpdateEngine.Update.cs @@ -234,7 +234,7 @@ private async Task DownloadFullDatabaseAsync(FileInfo databaseFileInfo private async Task<(bool succeeded, TimeSpan delay)> DownloadFullDatabaseWorkerAsync(FileInfo databaseFileInfo, CancellationToken cancellationToken) { - // Will hit https://az700632.vo.msecnd.net/pub/RoslynNuGetSearch/Elfie_V1/Latest.xml. Providing this + // Will hit https://aka.ms/vssettings/pub/RoslynNuGetSearch/Elfie_V1/Latest.xml. Providing this // link in the source to make it easy for maintainers to hit the endpoint to see if it succeeds and that // the data and http headers are what are expected. var serverPath = Invariant($"Elfie_V{AddReferenceDatabaseTextFileFormatVersion}/Latest.xml"); @@ -374,7 +374,7 @@ private async Task PatchLocalDatabaseAsync(FileInfo databaseFileInfo, // Now attempt to download and apply patch file. // - // Will hit https://az700632.vo.msecnd.net/pub/RoslynNuGetSearch/Elfie_V1/{db_version}_Patch.xml. + // Will hit https://aka.ms/vssettings/pub/RoslynNuGetSearch/Elfie_V1/{db_version}_Patch.xml. // Providing this link in the source to make it easy for maintainers to hit the endpoint to see if it // succeeds and that the data and http headers are what are expected. var serverPath = Invariant($"Elfie_V{AddReferenceDatabaseTextFileFormatVersion}/{database.DatabaseVersion}_Patch.xml"); diff --git a/src/VisualStudio/Core/Def/Storage/FileDownloader.cs b/src/VisualStudio/Core/Def/Storage/FileDownloader.cs index df617134e9442..5688f09332169 100644 --- a/src/VisualStudio/Core/Def/Storage/FileDownloader.cs +++ b/src/VisualStudio/Core/Def/Storage/FileDownloader.cs @@ -19,7 +19,7 @@ public IFileDownloader CreateClient(string hostId, string serverPath, int pollin { // BaseUrl provided by the VS RemoteControl client team. This is URL we are supposed // to use to publish and access data from. - const string BaseUrl = "https://az700632.vo.msecnd.net/pub"; + const string BaseUrl = "https://aka.ms/vssettings/pub"; return new FileDownloader(new RemoteControlClient(hostId, BaseUrl, serverPath, pollingMinutes)); }