Skip to content

Commit

Permalink
Add VS Code configs for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
xplicit committed Sep 19, 2017
1 parent ef06745 commit 965f08f
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .vscode/launch.json
@@ -0,0 +1,26 @@
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/tests/ServiceStack.Azure.Tests/bin/Debug/netcoreapp1.1/ServiceStack.Azure.Tests.dll",
"args": [
"--test=ServiceStack.Azure.Tests",
"--labels=All",
"--teamcity"
],
"cwd": "${workspaceRoot}/tests/ServiceStack.Azure.Tests",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
22 changes: 22 additions & 0 deletions .vscode/tasks.json
@@ -0,0 +1,22 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "dotnet",
"options": {
"env": {
"FrameworkPathOverride": "/usr/lib/mono/4.5/"
}
},
"isShellCommand": true,
"args": [],
"tasks": [
{
"taskName": "build",
"args": [ "/p:NUNITLITE=1", "src/ServiceStack.Azure.sln"],
"isBuildCommand": true,
"showOutput": "silent",
"problemMatcher": "$msCompile"
}
]
}

0 comments on commit 965f08f

Please sign in to comment.