Skip to content

Commit

Permalink
Update version to 2.9.0 (#10618)
Browse files Browse the repository at this point in the history
* Fix script for Powershell Core

* Increment version
  • Loading branch information
keveleigh authored May 26, 2022
1 parent 6155f22 commit eb3125f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class UwpAppxBuildToolsTest
xmlns:mobile='http://schemas.microsoft.com/appx/manifest/mobile/windows10'
IgnorableNamespaces='uap uap2 uap3 uap4 mp mobile iot'
xmlns='http://schemas.microsoft.com/appx/manifest/foundation/windows10'>
<Identity Name='Microsoft.MixedReality.Toolkit' Publisher='CN=Microsoft' Version='2.8.0.0' />
<Identity Name='Microsoft.MixedReality.Toolkit' Publisher='CN=Microsoft' Version='2.9.0.0' />
<mp:PhoneIdentity PhoneProductId='85c8bcd4-fbac-44ed-adf6-bfc01242a27f' PhonePublisherId='00000000-0000-0000-0000-000000000000' />
<Properties>
<DisplayName>MixedRealityToolkit</DisplayName>
Expand Down
4 changes: 2 additions & 2 deletions ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
bundleVersion: 2.8.0
bundleVersion: 2.9.0
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down Expand Up @@ -700,7 +700,7 @@ PlayerSettings:
m_RenderingPath: 1
m_MobileRenderingPath: 1
metroPackageName: Microsoft.MixedReality.Toolkit
metroPackageVersion: 2.8.0.0
metroPackageVersion: 2.9.0.0
metroCertificatePath: Assets/WSATestCertificate.pfx
metroCertificatePassword:
metroCertificateSubject: Microsoft
Expand Down
2 changes: 1 addition & 1 deletion pipelines/config/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variables:
# match (see scripts/packaging/versionmetadata.ps1)
# ProjectSettings/ProjectSettings.asset: bundleVersion: x.x.x
# ProjectSettings/ProjectSettings.asset: metroPackageVersion: x.x.x.0
MRTKVersion: 2.8.0
MRTKVersion: 2.9.0
MRTKReleaseTag: '' # final version component, e.g. 'RC2.1' or empty string
ToolsRepoName: mixedrealitytoolkit.build
ToolsDir: $(Build.SourcesDirectory)\$(ToolsRepoName)
2 changes: 1 addition & 1 deletion scripts/packaging/updateMRTKVersion.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ param(

function GetEncoding($Path)
{
[System.Byte[]]$Byte = Get-Content -Encoding byte -ReadCount 4 -TotalCount 4 -Path $Path
[System.Byte[]]$Byte = Get-Content -AsByteStream -ReadCount 4 -TotalCount 4 -Path $Path
if ($Byte[0] -eq 0xef -and $Byte[1] -eq 0xbb -and $Byte[2] -eq 0xbf)
{
return 'UTF8'
Expand Down

0 comments on commit eb3125f

Please sign in to comment.