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 3cc08ca commit 4bcdf0fCopy full SHA for 4bcdf0f
2 files changed
azure-pipelines.yml
@@ -42,4 +42,5 @@ steps:
42
gitHubConnection: github
43
tagSource: manual
44
tag: 'v$(vsix.version)'
45
+ title: 'Version $(vsix.version)'
46
assets: '$(vsix)'
scripts/GetVersion.ps1
@@ -1,2 +1,3 @@
1
[xml]$vsix = Get-Content $PSScriptRoot\..\src\GtmExtension\source.extension.vsixmanifest
2
-$env:VSIX_VERSION = $vsix.PackageManifest.Metadata.Identity.Version
+$version = $vsix.PackageManifest.Metadata.Identity.Version
3
+Write-Host "##vso[task.setvariable variable=vsix.version]$version"
0 commit comments