Skip to content

Commit ccc8839

Browse files
committed
Add task to remove bin/obj folders completely
1 parent 9e1e300 commit ccc8839

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.vscode/tasks.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,13 @@
8181
},
8282
"group": "build"
8383
},
84+
{
85+
"label": "remove bin/obj",
86+
"type": "shell",
87+
"command": "for /d /r . %d in (bin obj) do @if exist \"%d\" rmdir /s /q \"%d\"",
88+
"problemMatcher": "$msCompile",
89+
"group": "build"
90+
},
8491
{
8592
"label": "terraform init",
8693
"type": "shell",

0 commit comments

Comments
 (0)