CloudMirror: Add x64 support and update for Visual Studio 2026#424
Open
kiruba94 wants to merge 1 commit intomicrosoft:mainfrom
Open
CloudMirror: Add x64 support and update for Visual Studio 2026#424kiruba94 wants to merge 1 commit intomicrosoft:mainfrom
kiruba94 wants to merge 1 commit intomicrosoft:mainfrom
Conversation
- Update AppxBundlePlatforms from x86 to x86|x64 in wapproj - Add PlatformToolset v145 conditional for VS 2026 (v18.x) - Update TargetPlatformVersion to 10.0.26100.0 (installed SDK) - Update MaxVersionTested in Package.appxmanifest to 10.0.26100.0 - Upgrade CppWinRT NuGet from 2.0.220110.5 to 2.0.250303.1 - Update solution file header to VS 18 - Update README build instructions for x64 and modern VS Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
|
@kiruba94 please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.
Contributor License AgreementContribution License AgreementThis Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”),
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates the Cloud Mirror sample to support x64 builds and modern Visual Studio versions (2019, 2022, 2026), while maintaining backward compatibility.
Changes
x64 platform support
AppxBundlePlatformsfromx86tox86|x64in the packaging project, enabling MSIX package generation for both architectures.Visual Studio 2026 compatibility
PlatformToolsetconditional for VS 2026 (v145whenVisualStudioVersion >= 18.0), alongside the existingv142(VS 2019) default andv143(VS 2022) conditional.SDK and dependency updates
TargetPlatformVersionfrom10.0.22598.0to10.0.26100.0(Windows SDK 10.0.26100.0).MaxVersionTestedinPackage.appxmanifestto10.0.26100.0.Microsoft.Windows.CppWinRTNuGet package from2.0.220110.5to2.0.250303.1.README updates
10.0.17763.0to10.0.22598.0(matching the existing compile-time check instdafx.h).Backward compatibility
The project remains buildable with Visual Studio 2019 (
v142default toolset) and Visual Studio 2022 (v143conditional). TheMinimumVisualStudioVersionis unchanged at10.0.40219.1.Testing
Verified successful builds for both x86 and x64 (Debug and Release) on Visual Studio 2026 (v18.3, MSBuild 18.3.0, toolset v145).