Skip to content

Commit

Permalink
Fix vscode launch commands (#913)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-c-martin authored Nov 14, 2020
1 parent 7eb5fef commit 471dd5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"--extensionDevelopmentPath=${workspaceRoot}/src/vscode-bicep"
],
"env": {
"BICEP_LANGUAGE_SERVER_PATH": "${workspaceRoot}/src/Bicep.LangServer/bin/Debug/netcoreapp3.1/Bicep.LangServer.dll"
"BICEP_LANGUAGE_SERVER_PATH": "${workspaceRoot}/src/Bicep.LangServer/bin/Debug/net5.0/Bicep.LangServer.dll"
},
"stopOnEntry": false,
"sourceMaps": true,
Expand All @@ -34,7 +34,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-cli",
"program": "${workspaceFolder}/src/Bicep.Cli/bin/Debug/netcoreapp3.1/Bicep.dll",
"program": "${workspaceFolder}/src/Bicep.Cli/bin/Debug/net5.0/Bicep.dll",
"args": [],
"cwd": "${workspaceFolder}/src/Bicep.Cli",
"console": "internalConsole",
Expand Down
4 changes: 2 additions & 2 deletions src/vscode-bicep/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
"preLaunchTask": "${defaultBuildTask}",
"env": {
"BICEP_LANGUAGE_SERVER_PATH": "${workspaceRoot}/../Bicep.LangServer/bin/Debug/netcoreapp3.1/Bicep.LangServer.dll"
"BICEP_LANGUAGE_SERVER_PATH": "${workspaceRoot}/../Bicep.LangServer/bin/Debug/net5.0/Bicep.LangServer.dll"
}
},
{
Expand All @@ -31,7 +31,7 @@
"outFiles": ["${workspaceRoot}/out/test/e2e/**/*.js"],
"preLaunchTask": "${defaultBuildTask}",
"env": {
"BICEP_LANGUAGE_SERVER_PATH": "${workspaceRoot}/../Bicep.LangServer/bin/Debug/netcoreapp3.1/Bicep.LangServer.dll"
"BICEP_LANGUAGE_SERVER_PATH": "${workspaceRoot}/../Bicep.LangServer/bin/Debug/net5.0/Bicep.LangServer.dll"
}
}
]
Expand Down

0 comments on commit 471dd5f

Please sign in to comment.