Skip to content

Fix issue with VSCode var syntax change . to : #523

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 28, 2017
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
3 changes: 2 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@
"args": [ "--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/out",
"outFiles": ["${workspaceRoot}/out"],
"preLaunchTask": "Build"
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"address": "localhost",
"port": 5858,
"sourceMaps": false
Expand Down
2 changes: 1 addition & 1 deletion examples/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"type": "PowerShell",
"request": "attach",
"name": "PowerShell Attach to Host Process",
"processId": "${command.PickPSHostProcess}",
"processId": "${command:PickPSHostProcess}",
"runspaceId": 1
}
]
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"publisher": "ms-vscode",
"description": "Develop PowerShell scripts in Visual Studio Code!",
"engines": {
"vscode": "^1.7.0"
"vscode": "^1.10.0"
},
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/PowerShell/vscode-powershell/blob/master/README.md",
Expand Down Expand Up @@ -216,7 +216,7 @@
"type": "PowerShell",
"request": "attach",
"name": "PowerShell Attach to Host Process",
"processId": "^\"\\${command.PickPSHostProcess}\"",
"processId": "^\"\\${command:PickPSHostProcess}\"",
"runspaceId": 1
}
},
Expand Down Expand Up @@ -266,7 +266,7 @@
"processId": {
"type": "string",
"description": "The process id of the PowerShell host process to attach to. Works only on PowerShell 5 and above.",
"default": "${command.PickPSHostProcess}"
"default": "${command:PickPSHostProcess}"
},
"runspaceId": {
"type": "number",
Expand All @@ -289,7 +289,7 @@
"type": "PowerShell",
"request": "attach",
"name": "PowerShell Attach to Host Process",
"processId": "${command.PickPSHostProcess}",
"processId": "${command:PickPSHostProcess}",
"runspaceId": 1
},
{
Expand Down