Skip to content

Commit

Permalink
ci: fix setting multiple solution versions in pipeline (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
ewingjm authored Feb 28, 2021
1 parent 738632e commit f2175d5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions scripts/Set-SolutionVersion.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[String[]]
[String]
$Solutions,
[Parameter(Mandatory = $true)]
[String]
$Version
)

$Solutions | ForEach-Object {
$Solutions.Split(',') | ForEach-Object {
$solutionPath = Join-Path -Path .\src\solutions -ChildPath $_
$solutionXmlPath = Join-Path -Path $solutionPath -ChildPath '.\Extract\Other\Solution.xml'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<LocalizedName description="Development Hub - Azure DevOps" languagecode="1033" />
</LocalizedNames>
<Descriptions />
<Version>0.2.1</Version>
<Version>0.2.22</Version>
<Managed>2</Managed>
<Publisher>
<UniqueName>developmenthub</UniqueName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Descriptions>
<Description description="Development related functionality for the Development Hub." languagecode="1033" />
</Descriptions>
<Version>0.2.0</Version>
<Version>0.2.22</Version>
<Managed>2</Managed>
<Publisher>
<UniqueName>developmenthub</UniqueName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Descriptions>
<Description description="Issue management functionality for the Development Hub." languagecode="1033" />
</Descriptions>
<Version>0.1.11.1</Version>
<Version>0.2.22</Version>
<Managed>2</Managed>
<Publisher>
<UniqueName>developmenthub</UniqueName>
Expand Down

0 comments on commit f2175d5

Please sign in to comment.