Skip to content

Commit

Permalink
fix VSCode Code launcher parameters (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
kcoley committed Mar 19, 2018
1 parent 88761b1 commit f366da6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .vscode/launch.json
@@ -1,3 +1,4 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
Expand All @@ -9,9 +10,9 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/<insert-target-framework-here>/<insert-project-name-here>.dll",
"program": "${workspaceFolder}/Source/bin/Debug/netcoreapp2.0/AssetGenerator.dll",
"args": [],
"cwd": "${workspaceFolder}",
"cwd": "${workspaceFolder}/Source",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
"console": "internalConsole",
"stopAtEntry": false,
Expand Down
14 changes: 6 additions & 8 deletions .vscode/tasks.json
@@ -1,16 +1,14 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet build",
"type": "shell",
"group": "build",
"presentation": {
"reveal": "silent"
},
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Source/AssetGenerator.csproj"
],
"problemMatcher": "$msCompile"
}
]
Expand Down

0 comments on commit f366da6

Please sign in to comment.