Skip to content

Commit

Permalink
Update to version 0.14 (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
krschau authored Nov 13, 2024
1 parent cb1c5df commit 7451dc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
- release

variables:
MSIXVersion: '0.1300'
MSIXVersion: '0.1400'
solution: '**/DevHomeAzureExtension.sln'
appxPackageDir: 'AppxPackages'
testOutputArtifactDir: 'TestResults'
Expand Down
4 changes: 2 additions & 2 deletions build/scripts/CreateBuildInfo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Param(
)

$Major = "0"
$Minor = "13"
$Minor = "14"
$Patch = "99" # default to 99 for local builds

$versionSplit = $Version.Split(".");
Expand Down Expand Up @@ -49,4 +49,4 @@ if (-not($IsAzurePipelineBuild) -And [string]::IsNullOrWhiteSpace($Build)) {
}
#
$version_dotquad = [int[]]($Major, ($Minor + $Patch), $Elapsed, $Build)
return ($version_dotquad -Join ".")
return ($version_dotquad -Join ".")

0 comments on commit 7451dc3

Please sign in to comment.