From d644498f1ad992a762a8f384f49def02acce41bf Mon Sep 17 00:00:00 2001 From: OCram85 Date: Thu, 21 Sep 2017 08:42:30 +0200 Subject: [PATCH] adds basic Build tasks --- .vscode/tasks.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 25a0693..304f242 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -37,6 +37,19 @@ "kind": "test", "isDefault": true } + }, + { + "taskName": "DebugBuild", + "suppressTaskName": true, + "args": [ + "Write-Host 'Invoking Build...';", + "If (Test-Path -Path '.\\bin\\PSCredentialStore.zip') { Remove-Item -Path '.\\bin\\PSCredentialStore.zip' -Verbose};", + "Compress-Archive -Path '.\\src\\*' -DestinationPath '.\\bin\\PSCredentialStore.zip' -Update -Verbose" + ], + "group": { + "kind": "build", + "isDefault": true + } } ] }