Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 4 additions & 18 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "2.0.0",
"tasks": [
"version": "2.0.0",
"tasks": [
{
"label": "Bootstrap",
"type": "shell",
Expand All @@ -17,9 +17,7 @@
"type": "shell",
"command": "pwsh",
"args": [
"./build.ps1",
"-Configuration",
"${input:configuration}"
"./build.ps1"
],
"group": {
"kind": "build",
Expand All @@ -37,8 +35,6 @@
"args": [
"./build.ps1",
"-Test",
"-Configuration",
"${input:configuration}",
"-Framework",
"${input:framework}"
],
Expand All @@ -51,7 +47,7 @@
"panel": "dedicated",
"clear": true
},
"detail": "Run unit tests with selected configuration and framework"
"detail": "Run unit tests with selected framework"
},
{
"label": "Clean",
Expand All @@ -66,16 +62,6 @@
}
],
"inputs": [
{
"id": "configuration",
"description": "Build Configuration",
"type": "pickString",
"options": [
"Debug",
"Release"
],
"default": "Debug"
},
{
"id": "framework",
"description": "Target Framework",
Expand Down