Skip to content

Commit cc236d9

Browse files
committed
VS Code setup
1 parent 4d0aebc commit cc236d9

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "TesterApp Launch",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "Build",
9+
"program": "${workspaceFolder}/src/TestServer/bin/Debug/netcoreapp3.1/TestServer.dll",
10+
"cwd": "${workspaceFolder}/src/TestServer/bin/Debug/netcoreapp3.1/",
11+
"internalConsoleOptions": "openOnSessionStart",
12+
"env":
13+
{
14+
"ASPNETCORE_ENVIRONMENT": "Development"
15+
}
16+
}]
17+
}

.vscode/tasks.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/src/Simplify.Web.Multipart.sln"
11+
],
12+
"problemMatcher": "$msCompile",
13+
"group":
14+
{
15+
"kind": "build",
16+
"isDefault": true
17+
}
18+
}]
19+
}

0 commit comments

Comments
 (0)