cstdotnet/.vscode/tasks.json
Tony Bark e40ba5a904 IUIText interface for UIText class
- Added test to VSCode tasks
- New deploy keys
- Renamed dpkgpackage workflow to publish
- Bump to version to 2.0, beta 1
2022-10-10 02:54:46 -04:00

53 lines
1.3 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/CSTNet.Tests/CSTNet.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/CSTNet.Tests/CSTNet.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/CSTNet.Tests/CSTNet.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "test",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/CSTNet.Tests/CSTNet.Tests.csproj",
"/property:GenerateFullPaths=true"
],
"problemMatcher": "$msCompile"
}
]
}