Skip to content

Commit

Permalink
Merge pull request #53 from chuckries/dev
Browse files Browse the repository at this point in the history
Remove dnxcore50 from program path template
  • Loading branch information
chuckries committed Mar 1, 2016
2 parents ddb72b3 + 540fa75 commit e912f6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
"program": {
"type": "string",
"description": "Path to the program (executable file) to launch. On Windows, a '.exe' suffix is appended if not specified already.",
"default": "${workspaceRoot}/bin/Debug/dnxcore50/<My-Project-Name>"
"default": "${workspaceRoot}/bin/Debug/<path-to-program>"
},
"cwd": {
"type": "string",
Expand Down Expand Up @@ -316,7 +316,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/bin/Debug/dnxcore50/<My-Project-Name>",
"program": "${workspaceRoot}/bin/Debug/<path-to-program>",
"args": [ ],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
Expand All @@ -327,7 +327,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/bin/Debug/dnxcore50/<My-Project-Name>",
"program": "${workspaceRoot}/bin/Debug/<path-to-program>",
"args": [ ],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
Expand Down

0 comments on commit e912f6b

Please sign in to comment.