recrownedgtk/RecrownedGTK.Tools/.vscode/tasks.json

31 lines
901 B
JSON
Raw Permalink Normal View History

{
2020-05-18 21:44:25 +00:00
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
2020-05-18 21:44:25 +00:00
"type": "shell",
"command": "dotnet",
"args": [
2020-05-18 21:44:25 +00:00
"build"
],
2020-05-18 21:44:25 +00:00
"problemMatcher": []
},
{
2020-05-18 21:44:25 +00:00
"dependsOn": ["build"],
"label": "launch debug server",
"type": "process",
2020-05-18 21:44:25 +00:00
"command": "powershell",
"problemMatcher": [],
"args": ["-ExecutionPolicy", "Bypass", "-File", "./start_process.ps1"]
},
{
2020-05-18 21:44:25 +00:00
"label": "stop debug server",
"type": "process",
2020-05-18 21:44:25 +00:00
"command": "powershell",
"problemMatcher": [],
"args": ["-ExecutionPolicy", "Bypass", "-File", "./end_process.ps1"]
}
]
}