generated from AriasCreations/vsmodtemplate
40 lines
No EOL
1 KiB
JSON
40 lines
No EOL
1 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"build",
|
|
"-c",
|
|
"Debug",
|
|
"${workspaceFolder}/AriasServerUtils/AriasServerUtils.csproj"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "package",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"run",
|
|
"--project",
|
|
"${workspaceFolder}/CakeBuild/CakeBuild.csproj"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "build (Cake)",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"build",
|
|
"-c",
|
|
"Debug",
|
|
"${workspaceFolder}/CakeBuild/CakeBuild.csproj"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
}
|
|
]
|
|
} |