-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1087 from d35ha/vscode-extensions
Add python and jupyter vscode extension packages
- Loading branch information
Showing
7 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
packages/vscode.extension.jupyter.vm/tools/chocolateyinstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
$ErrorActionPreference = 'Stop' | ||
Import-Module vm.common -Force -DisableNameChecking | ||
|
||
$extensionId = 'ms-toolsai.jupyter' | ||
$extensionVersion = '2024.6.2024060601' | ||
$executablePath = Join-Path ${Env:ProgramFiles} "\Microsoft VS Code\bin\code.cmd" -Resolve | ||
|
||
& $executablePath --install-extension $extensionId '@' $extensionVersion |
6 changes: 6 additions & 0 deletions
6
packages/vscode.extension.jupyter.vm/tools/chocolateyuninstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
$ErrorActionPreference = 'Continue' | ||
Import-Module vm.common -Force -DisableNameChecking | ||
|
||
$extensionId = 'ms-toolsai.jupyter' | ||
|
||
code --uninstall-extension $extensionId |
13 changes: 13 additions & 0 deletions
13
packages/vscode.extension.jupyter.vm/vscode.extension.jupyter.vm.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
<metadata> | ||
<id>vscode.extension.jupyter.vm</id> | ||
<version>2024.6.2024060601</version> | ||
<authors>Microsoft</authors> | ||
<description>Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.</description> | ||
<dependencies> | ||
<dependency id="common.vm" /> | ||
<dependency id="vscode.vm" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
8 changes: 8 additions & 0 deletions
8
packages/vscode.extension.python.vm/tools/chocolateyinstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
$ErrorActionPreference = 'Stop' | ||
Import-Module vm.common -Force -DisableNameChecking | ||
|
||
$extensionId = 'ms-python.python' | ||
$extensionVersion = '2024.9.11621011' | ||
$executablePath = Join-Path ${Env:ProgramFiles} "\Microsoft VS Code\bin\code.cmd" -Resolve | ||
|
||
& $executablePath --install-extension $extensionId '@' $extensionVersion |
6 changes: 6 additions & 0 deletions
6
packages/vscode.extension.python.vm/tools/chocolateyuninstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
$ErrorActionPreference = 'Continue' | ||
Import-Module vm.common -Force -DisableNameChecking | ||
|
||
$extensionId = 'ms-python.python' | ||
|
||
code --uninstall-extension $extensionId |
13 changes: 13 additions & 0 deletions
13
packages/vscode.extension.python.vm/vscode.extension.python.vm.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
<metadata> | ||
<id>vscode.extension.python.vm</id> | ||
<version>2024.9.11621011</version> | ||
<authors>Microsoft</authors> | ||
<description>Python language support with extension access points for IntelliSense (Pylance), Debugging (Python Debugger), linting, formatting, refactoring, unit tests, and more.</description> | ||
<dependencies> | ||
<dependency id="common.vm" /> | ||
<dependency id="vscode.vm" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters