Skip to content

Commit

Permalink
adding assembly outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Jun 11, 2019
1 parent 9221073 commit d9c170f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/build/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ stages:
$VersionName = $Matches[2]
$IsPreview = $VersionName -match '-pre$'
$ReleaseDisplayName = $VersionName
$artifacts = "$env:PIPELINE_WORKSPACE/Release"
if($null -eq $env:IS_PREVIEW)
{
Expand All @@ -113,9 +114,12 @@ stages:
Write-Host "Version Name - $VersionName"
Write-Host "Release Display Name - $ReleaseDisplayName"
Write-Host "DLL Artifacts - $artifacts"
Write-Output ("##vso[task.setvariable variable=VersionName;]$VersionName")
Write-Output ("##vso[task.setvariable variable=ReleaseDisplayName;]$ReleaseDisplayName")
Write-Output ("##vso[task.setvariable variable=DLLArtifactsPath;]$artifacts")
Write-Output ("##vso[task.setvariable variable=DLLArtifactsZip;]$artifacts.zip")
}
catch {
Write-Error $_
Expand Down

0 comments on commit d9c170f

Please sign in to comment.