forked from OCram85/PSCredentialStore
Marco Blessing
64af16cc08
* adds basic module layout * fix module manifest encoding * fix callsign in appveyor helper * adds challenge file related functions * adds connection manager functions * adds Test-ChallengeFile * adds item related functions * adds store related functions * adds cSpell dictionary * adds CredentialStore related Pester tests * [WIP] test Pester file * fix typo * adds file dependencies * [WIP] fix pester tests * fix exception state * [WIP] add file dependencies * fix gitkeep filename * set constant debug module version string * adds Pester Tests for New-CredentialStoreItem * adds basic readme file * adds functions to export; adds meta data * adds vscode debug config * adds test for optional dependencies * [WIP] Implements optional dependency test * adds taskrunner definitions * adds CBH * add gitignore file * adds basic Build tasks * typo fixed * adds build folder to ignore list * adds Cisco and NetApp opt dependencies * adds build task * fix end of line dequence * remove task.json error * adds sources for optional modules * enables Pester and posh-git * prepare pre-release
57 lines
1.9 KiB
JSON
57 lines
1.9 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
// Start PowerShell
|
|
"windows": {
|
|
"command": "${env:windir}/System32/WindowsPowerShell/v1.0/powershell.exe",
|
|
"args": [
|
|
"-NoProfile",
|
|
"-ExecutionPolicy",
|
|
"Bypass"
|
|
]
|
|
},
|
|
"linux": {
|
|
"command": "/usr/bin/powershell",
|
|
"args": [
|
|
"-NoProfile"
|
|
]
|
|
},
|
|
"osx": {
|
|
"command": "/usr/local/bin/powershell",
|
|
"args": [
|
|
"-NoProfile"
|
|
]
|
|
},
|
|
"tasks": [
|
|
{
|
|
"taskName": "Test",
|
|
"suppressTaskName": true,
|
|
"args": [
|
|
"Write-Host 'Invoking Pester...'; $ProgressPreference = 'SilentlyContinue'; Invoke-Pester -Script '.\\tests\\*' -EnableExit $flase -PesterOption @{IncludeVSCodeMarker=$true};",
|
|
"Invoke-Command { Write-Host 'Completed Test task in task runner.' }"
|
|
],
|
|
"problemMatcher": "$pester",
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"taskName": "DebugBuild",
|
|
"suppressTaskName": true,
|
|
"args": [
|
|
"Write-Host 'Invoking Build...';",
|
|
"Write-Host -Object 'Test previous builds.' -ForegroundColor Blue;",
|
|
"If (Test-Path -Path '.\\bin\\PSCredentialStore.zip') { Remove-Item -Path '.\\bin\\PSCredentialStore.zip' -Verbose};",
|
|
"Copy-Item -Path '.\\src\\' -Destination '.\\bin\\PSCredentialStore' -Recurse -Verbose -Force;",
|
|
"Compress-Archive -Path '.\\src\\*' -DestinationPath '.\\bin\\PSCredentialStore.zip' -Update -Verbose;"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
}
|