Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit b955ae4

Browse files
committed
Create tasks.json
1 parent 98622cf commit b955ae4

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/test-project/aspnetapp.csproj"
11+
],
12+
"problemMatcher": "$tsc"
13+
},
14+
{
15+
"label": "publish",
16+
"command": "dotnet",
17+
"type": "process",
18+
"args": [
19+
"publish",
20+
"${workspaceFolder}/test-project/aspnetapp.csproj"
21+
],
22+
"problemMatcher": "$tsc"
23+
},
24+
{
25+
"label": "watch",
26+
"command": "dotnet",
27+
"type": "process",
28+
"args": [
29+
"watch",
30+
"run",
31+
"${workspaceFolder}/test-project/aspnetapp.csproj"
32+
],
33+
"problemMatcher": "$tsc"
34+
}
35+
]
36+
}

0 commit comments

Comments
 (0)