whitespace

This commit is contained in:
Kevin Marquette
2018-08-14 14:02:18 -07:00
parent 1b3777475b
commit 2d9e5fbd71
2 changed files with 4 additions and 3 deletions

View File

@@ -11,6 +11,7 @@
"search.exclude": { "search.exclude": {
"**/Tests/Data*": true "**/Tests/Data*": true
}, },
//-------- PowerShell configuration -------- //-------- PowerShell configuration --------
"powershell.codeFormatting.alignPropertyValuePairs": true, "powershell.codeFormatting.alignPropertyValuePairs": true,
"powershell.codeFormatting.preset": "Allman", "powershell.codeFormatting.preset": "Allman",

View File

@@ -33,9 +33,9 @@ taskx BuildManifest @{
if($false -eq $command.Parameters[$parameter].IsDynamic) if($false -eq $command.Parameters[$parameter].IsDynamic)
{ {
'{0}:{1}' -f $command.Name, $command.Parameters[$parameter].Name '{0}:{1}' -f $command.Name, $command.Parameters[$parameter].Name
foreach ($alias in $command.Parameters[$parameter].Aliases) foreach ($alias in $command.Parameters[$parameter].Aliases)
{ {
'{0}:{1}' -f $command.Name, $alias '{0}:{1}' -f $command.Name, $alias
} }
} }
} }