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