Skip to content

Commit f16c99e

Browse files
authored
Fix config key for upload supplemental data (#2703)
Silly mistake - this setting name doesn't match what's declared in package.json at https://github.com/microsoft/qsharp/blob/47e1c8e20d1e1887ca82548da240ed25d2141130/source/vscode/package.json#L148
1 parent 47e1c8e commit f16c99e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/vscode/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ export function getShowDevDiagnostics(): boolean {
4848
export function getUploadSupplementalData(): boolean {
4949
return vscode.workspace
5050
.getConfiguration("Q#")
51-
.get<boolean>("azure.uploadSupplementalData", false);
51+
.get<boolean>("azure.experimental.uploadSupplementalData", false);
5252
}

0 commit comments

Comments
 (0)