This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/.vscode/tasks.json

42 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2021-06-11 23:12:10 -04:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
2022-05-03 14:54:58 -04:00
"${workspaceFolder}/shtikbot-discord.csproj",
2021-06-11 23:12:10 -04:00
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
2022-05-03 14:54:58 -04:00
"${workspaceFolder}/shtikbot-discord.csproj",
2021-06-11 23:12:10 -04:00
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
2022-05-03 14:54:58 -04:00
"${workspaceFolder}/shtikbot-discord.csproj",
2021-06-11 23:12:10 -04:00
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}