Skip to content

Commit 1c8f4aa

Browse files
authored
Add missing script (#5622)
1 parent 3d5cf24 commit 1c8f4aa

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
param(
2+
[Parameter(Mandatory=$true)][string] $Name,
3+
[Parameter(Mandatory=$false)][string] $Value
4+
)
5+
6+
$ErrorActionPreference = 'Stop'
7+
$VerbosePreference = 'Continue'
8+
Set-StrictMode -Version 2.0
9+
10+
Write-Host "##vso[task.setvariable variable=$Name]$Value"

0 commit comments

Comments
 (0)