Skip to content

Commit ff6f494

Browse files
authored
Merge pull request #1706 from PowerShell/2.0.0
Bring master up to 2.0.0
2 parents 6bda814 + 73752d6 commit ff6f494

File tree

8 files changed

+7
-13
lines changed

8 files changed

+7
-13
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.10.3-insiders-{build}'
1+
version: '2.0.0-insiders-{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "PowerShell",
33
"displayName": "PowerShell",
4-
"version": "1.10.3",
4+
"version": "2.0.0",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {

src/features/ShowHelp.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@ export class ShowHelpFeature implements IFeature {
3636
this.languageClient.sendRequest(ShowHelpRequestType, item.Name);
3737
}
3838
});
39-
40-
this.deprecatedCommand = vscode.commands.registerCommand("PowerShell.OnlineHelp", () => {
41-
const warnText = "PowerShell.OnlineHelp is being deprecated. Use PowerShell.ShowHelp instead.";
42-
vscode.window.showWarningMessage(warnText);
43-
vscode.commands.executeCommand("PowerShell.ShowHelp");
44-
});
4539
}
4640

4741
public dispose() {

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import utils = require("./utils");
3636

3737
// NOTE: We will need to find a better way to deal with the required
3838
// PS Editor Services version...
39-
const requiredEditorServicesVersion = "1.10.3";
39+
const requiredEditorServicesVersion = "2.0.0";
4040

4141
let logger: Logger;
4242
let sessionManager: SessionManager;

tools/releaseBuild/Image/DockerFile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ COPY build.ps1 containerFiles/build.ps1
2323

2424
# Add an environment variable for build versioning
2525
ENV VSTS_BUILD=1
26-
ENV VSTS_BUILD_VERSION=1.10.3
26+
ENV VSTS_BUILD_VERSION=2.0.0
2727

2828
# Uncomment to debug locally
2929
# RUN Import-Module ./containerFiles/dockerInstall.psm1; `

tools/releaseBuild/setVstsVariables.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ foreach ($var in $vstsVariables.Keys)
88
$val = $vstsVariables[$var]
99
Write-Host "Setting var '$var' to value '$val'"
1010
Write-Host "##vso[task.setvariable variable=$var]$val"
11-
}
11+
}

vscode-powershell.build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ task GetExtensionVersion -Before Package {
3636
}
3737
}
3838

39-
task ResolveEditorServicesPath -Before CleanEditorServices, BuildEditorServices {
39+
task ResolveEditorServicesPath -Before CleanEditorServices, BuildEditorServices, Package {
4040

4141
$script:psesRepoPath = `
4242
if ($EditorServicesRepoPath) {

0 commit comments

Comments
 (0)