Show More
Commit Description:
Added tag 0.48.25 for changeset 65dbe706eb1c
Commit Description:
Added tag 0.48.25 for changeset 65dbe706eb1c
References:
File last commit:
Show/Diff file:
Action:
encompass-cs/.vscode/tasks.json
35 lines | 878 B | application/json | JsonLexer
35 lines | 878 B | application/json | JsonLexer
r169 | { | ||
"version": "2.0.0", | |||
"tasks": [ | |||
{ | |||
"label": "build", | |||
"command": "dotnet", | |||
"type": "process", | |||
"args": [ | |||
"build", | |||
"${workspaceFolder}/test/test.csproj" | |||
], | |||
"problemMatcher": "$tsc" | |||
}, | |||
{ | |||
"label": "publish", | |||
"command": "dotnet", | |||
"type": "process", | |||
"args": [ | |||
"publish", | |||
"${workspaceFolder}/test/test.csproj" | |||
], | |||
"problemMatcher": "$tsc" | |||
}, | |||
{ | |||
"label": "watch", | |||
"command": "dotnet", | |||
"type": "process", | |||
"args": [ | |||
"watch", | |||
"run", | |||
"${workspaceFolder}/test/test.csproj" | |||
], | |||
"problemMatcher": "$tsc" | |||
} | |||
] | |||
} |