We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef99597 commit c0bea50Copy full SHA for c0bea50
1 file changed
Transpilers/Parameters/VBN.psx.ps1
@@ -15,7 +15,11 @@ $Mandatory,
15
16
[Alias('VFP')]
17
[switch]
18
-$ValueFromPipeline
+$ValueFromPipeline,
19
+
20
+# The position of the parameter.
21
+[int]
22
+$Position
23
)
24
25
$paramOptions = @(
@@ -24,7 +28,7 @@ $paramOptions = @(
28
}
29
if ($ParameterSet) {
26
30
"ParameterSetName='$($ParameterSet.Replace("'","''"))'"
27
- }
31
+ }
32
"ValueFromPipelineByPropertyName"
33
if ($ValueFromPipeline) {
34
"ValueFromPipeline"
0 commit comments