Skip to content

Commit

Permalink
Update version props to 2.9.0 (#8710)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmahone authored Aug 7, 2023
1 parent c50eb27 commit 7485eff
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
10 changes: 5 additions & 5 deletions build/NuSpecs/MUXControls-Nuget-FrameworkPackage.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,34 @@
<Import Project="$(MSBuildThisFileDirectory)\MicrosoftUIXamlVersion.props"/>
<Import Project="$(MSBuildThisFileDirectory)\Common.targets"/>
<ItemGroup>
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\x86\Release\Microsoft.UI.Xaml.2.8.appx">
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\x86\Release\Microsoft.UI.Xaml.2.9.appx">
<Architecture>x86</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
</AppxPackageRegistration>
<!-- Some C++/CX projects use Platform=Win32 instead of Platform=x86 -->
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\x86\Release\Microsoft.UI.Xaml.2.8.appx">
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\x86\Release\Microsoft.UI.Xaml.2.9.appx">
<Architecture>Win32</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
</AppxPackageRegistration>
</ItemGroup>
<ItemGroup>
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\x64\Release\Microsoft.UI.Xaml.2.8.appx">
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\x64\Release\Microsoft.UI.Xaml.2.9.appx">
<Architecture>x64</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
</AppxPackageRegistration>
</ItemGroup>
<ItemGroup>
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\arm\Release\Microsoft.UI.Xaml.2.8.appx">
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\arm\Release\Microsoft.UI.Xaml.2.9.appx">
<Architecture>arm</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
</AppxPackageRegistration>
</ItemGroup>
<ItemGroup>
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\arm64\Release\Microsoft.UI.Xaml.2.8.appx">
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\arm64\Release\Microsoft.UI.Xaml.2.9.appx">
<Architecture>arm64</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
Expand Down
4 changes: 2 additions & 2 deletions dev/inc/BuildMacros.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
#ifdef _DEBUG
// NOTE: This could be "Microsoft.UI.Xaml.Debug" if we wanted to have Debug framework packages be distinct and
// installed side-by-side on a machine.
#define MUXCONTROLS_PACKAGE_NAME L"Microsoft.UI.Xaml.2.8"
#define MUXCONTROLS_PACKAGE_NAME L"Microsoft.UI.Xaml.2.9"
#else
#define MUXCONTROLS_PACKAGE_NAME L"Microsoft.UI.Xaml.2.8"
#define MUXCONTROLS_PACKAGE_NAME L"Microsoft.UI.Xaml.2.9"
#endif

#define MUXCONTROLS_CBS_PACKAGE_NAME L"Microsoft.UI.Xaml.CBS"
7 changes: 5 additions & 2 deletions version.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See LICENSE in the project root for license information. -->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- When updating the Major or Minor version, also update: -->
<!-- build\NuSpecs\MUXControls-Nuget-FrameworkPackage.props -->
<!-- dev\inc\BuildMacros.h -->
<MUXVersionMajor>2</MUXVersionMajor>
<MUXVersionMinor>8</MUXVersionMinor>
<MUXVersionPatch>2</MUXVersionPatch>
<MUXVersionMinor>9</MUXVersionMinor>
<MUXVersionPatch>0</MUXVersionPatch>
<MUXVersionBuild Condition="$(MUXVersionBuild) == ''">0</MUXVersionBuild>
<MUXVersionRevision Condition="$(MUXVersionRevision) == ''">0</MUXVersionRevision>
</PropertyGroup>
Expand Down

0 comments on commit 7485eff

Please sign in to comment.