Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cpptools",
"displayName": "C/C++",
"description": "C/C++ IntelliSense, debugging, and code browsing.",
"version": "0.18.2-master",
"version": "0.19.1-master",
"publisher": "ms-vscode",
"preview": true,
"icon": "LanguageCCPP_color_128x.png",
Expand Down Expand Up @@ -1416,7 +1416,7 @@
"runtimeDependencies": [
{
"description": "C/C++ language components (Linux / x86_64)",
"url": "https://go.microsoft.com/fwlink/?linkid=2010302",
"url": "https://go.microsoft.com/fwlink/?linkid=2026727",
"platforms": [
"linux"
],
Expand All @@ -1430,7 +1430,7 @@
},
{
"description": "C/C++ language components (Linux / x86)",
"url": "https://go.microsoft.com/fwlink/?linkid=2010301",
"url": "https://go.microsoft.com/fwlink/?linkid=2026568",
"platforms": [
"linux"
],
Expand All @@ -1446,7 +1446,7 @@
},
{
"description": "C/C++ language components (OS X)",
"url": "https://go.microsoft.com/fwlink/?linkid=2010303",
"url": "https://go.microsoft.com/fwlink/?linkid=2026569",
"platforms": [
"darwin"
],
Expand All @@ -1457,7 +1457,7 @@
},
{
"description": "C/C++ language components (Windows)",
"url": "https://go.microsoft.com/fwlink/?linkid=2010204",
"url": "https://go.microsoft.com/fwlink/?linkid=2026728",
"platforms": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion Extension/src/abTesting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class ABTestSettings {
let hasError: boolean = false;
let telemetryProperties: { [key: string]: string } = {};
const localConfigPath: string = util.getExtensionFilePath(localConfigFile);
return util.downloadFileToDestination("https://go.microsoft.com/fwlink/?linkid=852750", localConfigPath)
return util.downloadFileToDestination("https://go.microsoft.com/fwlink/?linkid=2026205", localConfigPath)
.catch((error) => {
// More specific error info is not likely to be helpful, and we get detailed download data from the initial install.
hasError = true;
Expand Down