Skip to content

Commit 782afd9

Browse files
Remove configuration selection from default build task (#4855)
1 parent a7d988f commit 782afd9

File tree

1 file changed

+4
-18
lines changed

1 file changed

+4
-18
lines changed

.vscode/tasks.json

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"version": "2.0.0",
3-
"tasks": [
2+
"version": "2.0.0",
3+
"tasks": [
44
{
55
"label": "Bootstrap",
66
"type": "shell",
@@ -17,9 +17,7 @@
1717
"type": "shell",
1818
"command": "pwsh",
1919
"args": [
20-
"./build.ps1",
21-
"-Configuration",
22-
"${input:configuration}"
20+
"./build.ps1"
2321
],
2422
"group": {
2523
"kind": "build",
@@ -37,8 +35,6 @@
3735
"args": [
3836
"./build.ps1",
3937
"-Test",
40-
"-Configuration",
41-
"${input:configuration}",
4238
"-Framework",
4339
"${input:framework}"
4440
],
@@ -51,7 +47,7 @@
5147
"panel": "dedicated",
5248
"clear": true
5349
},
54-
"detail": "Run unit tests with selected configuration and framework"
50+
"detail": "Run unit tests with selected framework"
5551
},
5652
{
5753
"label": "Clean",
@@ -66,16 +62,6 @@
6662
}
6763
],
6864
"inputs": [
69-
{
70-
"id": "configuration",
71-
"description": "Build Configuration",
72-
"type": "pickString",
73-
"options": [
74-
"Debug",
75-
"Release"
76-
],
77-
"default": "Debug"
78-
},
7965
{
8066
"id": "framework",
8167
"description": "Target Framework",

0 commit comments

Comments
 (0)