Skip to content

Commit 3816573

Browse files
Added launch configuration
1 parent 0e6e6e1 commit 3816573

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

.vscode/launch.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch Samples/VinV",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build-vinv-sample",
12+
"program": "${workspaceFolder}/Samples/VariableInVariable/bin/Debug/netcoreapp2.0/VariableInVariable.dll",
13+
"args": [],
14+
"cwd": "${workspaceFolder}",
15+
"console": "internalConsole",
16+
"stopAtEntry": false,
17+
"internalConsoleOptions": "openOnSessionStart",
18+
"env": {
19+
"ASPNETCORE_ENVIRONMENT": "Development"
20+
}
21+
},
22+
{
23+
"name": ".NET Core Attach",
24+
"type": "coreclr",
25+
"request": "attach",
26+
"processId": "${command:pickProcess}"
27+
}
28+
]
29+
}

.vscode/tasks.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build-vinv-sample",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/Samples/VariableInVariable/VariableInVariable.csproj"
11+
],
12+
"problemMatcher": "$msCompile"
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)