We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da26488 commit 0a05069Copy full SHA for 0a05069
1 file changed
azure-pipelines.yml
@@ -37,3 +37,18 @@ steps:
37
!**\*VBIDETools.Tests.dll
38
!**\obj\**
39
testFiltercriteria: "Category!=AccessClientTests"
40
+
41
+- task: PowerShell@2
42
+ inputs:
43
+ targetType: 'inline'
44
+ script: |
45
+ $assemblyPath = Join-Path -Path $(Build.SourcesDirectory) -ChildPath "AccUnit\bin\Release\AccUnit.dll"
46
+ $assembly = [System.Reflection.Assembly]::LoadFile($assemblyPath)
47
+ $version = $assembly.GetName().Version.ToString()
48
+ Write-Host "##vso[task.setvariable variable=dllVersion]$version"
49
50
+- task: PublishBuildArtifacts@1
51
52
+ PathtoPublish: '$(Build.ArtifactStagingDirectory)'
53
+ ArtifactName: 'drop'
54
+ publishLocation: 'Container'
0 commit comments