adds basic Build tasks

This commit is contained in:
OCram85 2017-09-21 08:42:30 +02:00
parent c3b2af7687
commit d644498f1a
1 changed files with 13 additions and 0 deletions

13
.vscode/tasks.json vendored
View File

@ -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
}
}
]
}