From d9c170f19947794d7a3229a8769529322a297d3a Mon Sep 17 00:00:00 2001 From: Dan Siegel Date: Mon, 10 Jun 2019 17:15:37 -0700 Subject: [PATCH] adding assembly outputs --- Source/build/azure-pipelines.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/build/azure-pipelines.yml b/Source/build/azure-pipelines.yml index 1bc8ad6be..2dd38ed20 100644 --- a/Source/build/azure-pipelines.yml +++ b/Source/build/azure-pipelines.yml @@ -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) { @@ -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 $_