8 lines
278 B
PowerShell
8 lines
278 B
PowerShell
task PublishVersion {
|
|
[version] $sourceVersion = (Get-Metadata -Path $manifestPath -PropertyName 'ModuleVersion')
|
|
"##vso[build.updatebuildnumber]$sourceVersion"
|
|
|
|
# Do the same for appveyor
|
|
# https://www.appveyor.com/docs/build-worker-api/#update-build-details
|
|
}
|