Skip to content

Commit 8f4a2bd

Browse files
authored
Merge pull request PowerShell#459 from PowerShell/daviwil/ci-build-artifacts
Upload extension VSIX to AppVeyor on successful build
2 parents 9398a3f + de30017 commit 8f4a2bd

File tree

5 files changed

+410
-344
lines changed

5 files changed

+410
-344
lines changed

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,23 @@ To open/view the extension's examples in Visual Studio Code, run the following f
4444
code (Get-ChildItem $Home\.vscode\extensions\ms-vscode.PowerShell-*\examples)[-1]
4545
```
4646

47+
## Installing the Extension
48+
49+
You can install the official release of the PowerShell extension by following the steps
50+
in the [Visual Studio Code documentation](https://code.visualstudio.com/docs/editor/extension-gallery).
51+
In the Extensions pane, search for "PowerShell" extension and install it there. You will
52+
get notified automatically about any future extension updates!
53+
54+
You can also install a VSIX package from our [Releases page](https://github.com/PowerShell/vscode-powershell/releases) by following the
55+
[Install from a VSIX](https://code.visualstudio.com/docs/extensions/install-extension#_install-from-a-vsix)
56+
instructions. The easiest way is through the command line:
57+
58+
```
59+
code --install-extension PowerShell-<version>.vsix
60+
```
61+
62+
> NOTE: If you are using VS Code Insiders, the command will be `code-insiders`.
63+
4764
## Reporting Problems
4865

4966
If you're having trouble with the PowerShell extension, please follow these instructions

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '0.9.0.{build}'
1+
version: '0.9.1-insiders-{build}'
22
image: Visual Studio 2017 RC
33
clone_depth: 10
44
skip_tags: true
@@ -16,7 +16,7 @@ install:
1616
Install-Module InvokeBuild -RequiredVersion 3.2.1 -Scope CurrentUser -Force | Out-Null
1717
1818
build_script:
19-
- ps: Invoke-Build Build
19+
- ps: Invoke-Build
2020

2121
# The build script takes care of the tests
2222
test: off

0 commit comments

Comments
 (0)