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
48 lines
1.5 KiB
JSON
48 lines
1.5 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "launch",
|
|
"name": "PowerShell Launch Current File",
|
|
"script": "${file}",
|
|
"args": [],
|
|
"cwd": "${file}"
|
|
},
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "launch",
|
|
"name": "PowerShell Launch Current File in Temporary Console",
|
|
"script": "${file}",
|
|
"args": [],
|
|
"cwd": "${file}",
|
|
"createTemporaryIntegratedConsole": true
|
|
},
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "launch",
|
|
"name": "PowerShell Launch Current File w/Args Prompt",
|
|
"script": "${file}",
|
|
"args": [
|
|
"${command:SpecifyScriptArgs}"
|
|
],
|
|
"cwd": "${file}"
|
|
},
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "attach",
|
|
"name": "PowerShell Attach to Host Process",
|
|
"processId": "${command:PickPSHostProcess}",
|
|
"runspaceId": 1
|
|
},
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "launch",
|
|
"name": "PowerShell Interactive Session",
|
|
"cwd": "${workspaceRoot}"
|
|
}
|
|
]
|
|
} |