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
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-powerquery-sdk",
"displayName": "Power Query SDK",
"description": "Power Query Connector SDK",
"version": "0.2.1",
"version": "0.2.2",
"author": "Microsoft Corporation",
"license": "MIT",
"homepage": "https://github.com/microsoft/vscode-powerquery-sdk#readme",
Expand Down
6 changes: 3 additions & 3 deletions src/constants/PowerQuerySdkExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ const NugetBaseFolder: string = ".nuget" as const;
const InternalMsftPqSdkToolsNugetName: string = "Microsoft.PowerQuery.SdkTools" as const;
const PublicMsftPqSdkToolsNugetName: string = InternalMsftPqSdkToolsNugetName;
/**
* 2.112 or 2.112.x wil limit the version of the sdkTool seized beneath 2.113
* 2.114 or 2.114.x wil limit the version of the sdkTool seized beneath 2.115
*/
const MaximumPqTestNugetVersion: string = "2.112.x" as const;
const MaximumPqTestNugetVersion: string = "2.114.x" as const;
/**
* A suggestedPqTestNugetVersion that would be used as the initially tried pqTest version
* thus, make sure it is lower than `MaximumPqTestNugetVersion` if it were specified
*/
const SuggestedPqTestNugetVersion: string = "2.112.4" as const;
const SuggestedPqTestNugetVersion: string = "2.114.4" as const;

const PqTestSubPath: string[] = [
`${InternalMsftPqSdkToolsNugetName}.${SuggestedPqTestNugetVersion}`,
Expand Down