Skip to content

Commit

Permalink
Add DevTest Labs PowerShell Library (Azure#490)
Browse files Browse the repository at this point in the history
* Initial commit
* ADD: Az compatibility and better Contributing file
* Fix: Readme links
* FIX: Readme, license and contrib to look like DTL
* FIX: link in Readme
* FIX: trying to make it work on multiple PS version
* FIX: remove useless importing statement
* FIX: partial fix for azurerm aliases not working
* FIX: Get-AzureRmResource broken for DTL in Core
* FIX: remove temporary file
* FIX: disable env test for now
* REFACT: give better names to scenarios
* FIX: help message for parameters and add dot end of strings.
* FIX: better error message for dtlnetlab
* FIX: change comment from 'experimental' to explaination.
* FIX: Get-CallerPreference remove PS doc, add link
* FIX: create random RG name in tests
* FIX: various text in scenarios.
* FIX: add -force to delete-rg not to ask confirm
* FIX: CONTRIBUTING and Redme as for Leo comments.
* FIX: add Schedule to Set-AzDtlVmShutdown
* REFACT: rename $DevTestLabName to $LabName
* REFACT: add Startup to Set-AzDtlLabStartup
  • Loading branch information
lucabol authored and leovms committed May 28, 2019
1 parent a1dfdaa commit 8075576
Show file tree
Hide file tree
Showing 10 changed files with 3,173 additions and 0 deletions.
53 changes: 53 additions & 0 deletions samples/DevTestLabs/Modules/Library/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
// 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": [

{
"name": "PowerShell Launch Current File",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": [],
"cwd": "${file}"
},
{
"name": "PowerShell Launch Current File in Temporary Console",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": [],
"cwd": "${file}",
"createTemporaryIntegratedConsole": true
},
{
"name": "PowerShell Launch Current File w/Args Prompt",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": [
"${command:SpecifyScriptArgs}"
],
"cwd": "${file}"
},
{
"name": "PowerShell Attach to Host Process",
"type": "PowerShell",
"request": "attach"
},
{
"name": "PowerShell Interactive Session",
"type": "PowerShell",
"request": "launch",
"cwd": ""
},
{
"name": "PowerShell Attach Interactive Session Runspace",
"type": "PowerShell",
"request": "attach",
"processId": "current"
}
]
}
Loading

0 comments on commit 8075576

Please sign in to comment.