We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf80ace commit 0cf393eCopy full SHA for 0cf393e
.circleci/config.yml
@@ -41,7 +41,8 @@ jobs:
41
command: |
42
$file = Get-Item << pipeline.parameters.csproj-file >>
43
[xml]$cn = Get-Content $file
44
- $version = $cn.Project.PropertyGroup.Version
+ $version = $cn.Project.PropertyGroup.Version | Select-Object -First 1
45
+ Write-Output version=$version
46
echo "export PACKAGE_VERSION=$version" >> $BASH_ENV
47
- run:
48
name: Print PACKAGE_VERSION
0 commit comments