Skip to content

Commit

Permalink
Fix up .vscode files
Browse files Browse the repository at this point in the history
  • Loading branch information
andyleejordan committed Mar 31, 2016
1 parent f1d27d5 commit b8435da
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 34 deletions.
41 changes: 20 additions & 21 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch",
"type": "coreclr",
"request": "launch",
"justMyCode": false,
"stopAtEntry": true,
"program": "${workspaceRoot}/bin/powershell",
"args": [ ],
"preLaunchTask": "build",
"cwd": "${workspaceRoot}"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"justMyCode": false,
"processName": "powershell"
}
]
"configurations": [
{
"name": ".NET Core Launch",
"type": "coreclr",
"request": "launch",
"justMyCode": false,
"stopAtEntry": true,
"program": "${workspaceRoot}/bin/powershell",
"args": [ ],
"preLaunchTask": "build",
"cwd": "${workspaceRoot}"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"justMyCode": false,
"processName": "powershell"
}
]
}
25 changes: 12 additions & 13 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"version": "0.1.0",
"command": "powershell",
"isShellCommand": true,
"showOutput": "verbose",
"args": [ "--command" ],
"command": "powershell",
"isShellCommand": true,
"showOutput": "verbose",
"args": [ "-c" ],

"tasks": [
{
"taskName": "build",
"args": [ "Import-Module ${workspaceRoot}/PowerShellGitHubDev.psm1; Start-PSBuild" ],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]
"tasks": [
{
"taskName": "build",
"args": [ "Import-Module ${workspaceRoot}/PowerShellGitHubDev.psm1; Start-PSBuild" ],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]
}

0 comments on commit b8435da

Please sign in to comment.