Skip to content

Commit

Permalink
Add debugpy, jupyter and pylance vscode extension packages
Browse files Browse the repository at this point in the history
  • Loading branch information
d35ha committed Jun 11, 2024
1 parent bf9450d commit 8d66af9
Show file tree
Hide file tree
Showing 9 changed files with 81 additions and 0 deletions.
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.debugpy'
$extensionVersion = '2024.7.11591015'
$executablePath = Join-Path ${Env:ProgramFiles} "\Microsoft VS Code\bin\code.cmd" -Resolve

& $executablePath --install-extension $extensionId '@' $extensionVersion
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.debugpy'

code --uninstall-extension $extensionId
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.debugpy.vm</id>
<version>2024.7.11591015</version>
<authors>Microsoft</authors>
<description>Python Debugger extension using debugpy.</description>
<dependencies>
<dependency id="common.vm" />
<dependency id="vscode.vm" />
</dependencies>
</metadata>
</package>
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
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
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>
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.vscode-pylance'
$extensionVersion = '2024.6.1'
$executablePath = Join-Path ${Env:ProgramFiles} "\Microsoft VS Code\bin\code.cmd" -Resolve

& $executablePath --install-extension $extensionId '@' $extensionVersion
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.vscode-pylance'

code --uninstall-extension $extensionId
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.pylance.vm</id>
<version>2024.6.1</version>
<authors>Microsoft</authors>
<description>A performant, feature-rich language server for Python in VS Code.</description>
<dependencies>
<dependency id="common.vm" />
<dependency id="vscode.vm" />
</dependencies>
</metadata>
</package>

0 comments on commit 8d66af9

Please sign in to comment.