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
8,233 changes: 8,233 additions & 0 deletions HostInjection/Generated/VSCodeApi.g.cs

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion HostInjection/PowerShellProTools.VSCode.psm1
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
Import-Module "$PSScriptRoot\PowerShellProTools.VSCode.dll"
Import-Module "$PSScriptRoot\PowerShellProTools.SharedCommands.dll"
Import-Module "$PSScriptRoot\PowerShellProTools.SharedCommands.dll"

if (Get-Variable -Name vscode -Scope Global -ErrorAction SilentlyContinue) {
Remove-Variable -Name vscode -Scope Global -Force
}

Set-Variable -Name vscode -Scope Global -Option ReadOnly -Value ([PowerShellToolsPro.Cmdlets.VSCode.VSCodeApiBootstrap]::Create())
Loading
Loading