Skip to content

Commit c3d43b8

Browse files
author
David Kline
authored
Merge pull request #10018 from keveleigh/fix-packing
Update regex to catch dependencies
2 parents 4ea313d + 87fc681 commit c3d43b8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Assets/MRTK/Tests/EditModeTests/Core/Utilities/BuildAndDeploy/UwpAppxBuildToolsTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class UwpAppxBuildToolsTest
2626
xmlns:mobile='http://schemas.microsoft.com/appx/manifest/mobile/windows10'
2727
IgnorableNamespaces='uap uap2 uap3 uap4 mp mobile iot'
2828
xmlns='http://schemas.microsoft.com/appx/manifest/foundation/windows10'>
29-
<Identity Name='Microsoft.MixedReality.Toolkit' Publisher='CN=Microsoft' Version='2.7.1.0' />
29+
<Identity Name='Microsoft.MixedReality.Toolkit' Publisher='CN=Microsoft' Version='2.7.2.0' />
3030
<mp:PhoneIdentity PhoneProductId='85c8bcd4-fbac-44ed-adf6-bfc01242a27f' PhonePublisherId='00000000-0000-0000-0000-000000000000' />
3131
<Properties>
3232
<DisplayName>MixedRealityToolkit</DisplayName>

ProjectSettings/ProjectSettings.asset

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ PlayerSettings:
118118
16:10: 1
119119
16:9: 1
120120
Others: 1
121-
bundleVersion: 2.7.1
121+
bundleVersion: 2.7.2
122122
preloadedAssets: []
123123
metroInputSource: 0
124124
wsaTransparentSwapchain: 0
@@ -687,7 +687,7 @@ PlayerSettings:
687687
m_RenderingPath: 1
688688
m_MobileRenderingPath: 1
689689
metroPackageName: Microsoft.MixedReality.Toolkit
690-
metroPackageVersion: 2.7.1.0
690+
metroPackageVersion: 2.7.2.0
691691
metroCertificatePath: Assets/WSATestCertificate.pfx
692692
metroCertificatePassword:
693693
metroCertificateSubject: Microsoft

pipelines/config/settings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ variables:
1212
# match (see scripts/packaging/versionmetadata.ps1)
1313
# ProjectSettings/ProjectSettings.asset: bundleVersion: x.x.x
1414
# ProjectSettings/ProjectSettings.asset: metroPackageVersion: x.x.x.0
15-
MRTKVersion: 2.7.1
15+
MRTKVersion: 2.7.2
1616
MRTKReleaseTag: '' # final version component, e.g. 'RC2.1' or empty string
1717
ToolsRepoName: mixedrealitytoolkit.build
1818
ToolsDir: $(Build.SourcesDirectory)\$(ToolsRepoName)

scripts/packaging/createupmpackages.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ foreach ($entry in $packages.GetEnumerator()) {
159159

160160
# Apply the version number to the package json file
161161
$packageJsonPath = "$packagePath/package.json"
162-
((Get-Content -Path $packageJsonPath -Raw) -Replace '("version\": )"([0-9.]+-?[a-zA-Z0-9.]*|%version%)', "`$1`"$Version") | Set-Content -Path $packageJsonPath -NoNewline
162+
((Get-Content -Path $packageJsonPath -Raw) -Replace '("version": |"com\.microsoft\.mixedreality\.toolkit\.\w+": )"([0-9.]+-?[a-zA-Z0-9.]*|%version%)', "`$1`"$Version") | Set-Content -Path $packageJsonPath -NoNewline
163163

164164
Write-Output "======================="
165165
Write-Output "Creating $scope.$product.$packageName"

0 commit comments

Comments
 (0)