-
Notifications
You must be signed in to change notification settings - Fork 4
/
PowersShell.code-workspace
106 lines (106 loc) · 4.14 KB
/
PowersShell.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"folders": [
{
"path": "."
}
],
"settings": {
"powershell.startAsLoginShell.osx": false,
"powershell.buttons.showPanelMovementButtons": true,
"powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.useConstantStrings": true,
"powershell.codeFormatting.useCorrectCasing": true,
"powershell.codeFormatting.whitespaceBetweenParameters": true,
"powershell.cwd": "",
"psi-header.config": {
"forceToTop": true,
"blankLinesAfter": 4,
"license": "Custom"
},
"psi-header.lang-config": [
{
"language": "powershell",
"begin": "",
"end": "",
"prefix": "",
}
],
"psi-header.templates": [
{
"language": "powershell",
"template": [
"function <<filenamebase>> { ",
"",
" <#",
" .SYNOPSIS",
" < A brief description of the function or script.>",
" .DESCRIPTION",
" <A longer description.>",
" .NOTES",
" <Note for the Function>",
" .PARAMETER <Parameter_NameA>",
" <Brief description of parameter input required. Repeat this attribute if required>",
" .PARAMETER <Parameter_NameB>",
" <Brief description of parameter input required. Repeat this attribute if required>",
" .PARAMETER <Parameter_NameC>",
" <Brief description of parameter input required. Repeat this attribute if required>",
" .INPUTS",
" <Description of objects that can be piped to the script.>",
" .OUTPUTS",
" <Description of objects that are output by the script.>",
" .EXAMPLE",
" <Example of how to run the script.>",
" .EXAMPLE",
" <Example of how to run the script.>",
" .EXAMPLE",
" <Example of how to run the script.>",
" #>",
"",
" [CmdletBinding()]",
" param (",
" [Parameter( ",
" ValueFromPipeline=$true,",
" Mandatory=$false,",
" ValueFromPipelineByPropertyName=$true,",
" ParameterSetName=\"PARAMETER_NAME\",",
" HelpMessage=\"Enter a month or * for all\"",
" )]",
" [Alias('')] ",
" [string]$Parameter_NameA= '*',",
" [Parameter( ",
" ValueFromPipeline=$true,",
" Mandatory=$false,",
" ValueFromPipelineByPropertyName=$true,",
" ParameterSetName=\"PARAMETER_NAME\",",
" HelpMessage=\"Enter a month or * for all\"",
" )]",
" [Alias('')] ",
" [string]$Parameter_NameB= '*',",
" [Parameter( ",
" ValueFromPipeline=$true,",
" Mandatory=$false,",
" ValueFromPipelineByPropertyName=$true,",
" ParameterSetName=\"PARAMETER_NAME\",",
" HelpMessage=\"Enter a month or * for all\"",
" )]",
" [Alias('')] ",
" [string]$Parameter_NameC= '*'",
" )",
"",
"",
"",
"",
"",
"",
"",
"}",
"",
]
},
],
"powershell.integratedConsole.forceClearScrollbackBuffer": true,
"terminal.external.windowsExec": "C:\\Users\\jimmy\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe",
"terminal.integrated.allowChords": false,
"terminal.integrated.defaultProfile.windows": "PowerShell"
}
}