Relax Windows target platform version to 10.0#3
Closed
Fury7425 wants to merge 1 commit into
Closed
Conversation
windows-latest runners no longer ship SDK 10.0.22621.0; the hardcoded version caused MSB8036. Using "10.0" lets MSBuild select the highest installed SDK (currently 10.0.26100.0) without further CI changes. https://claude.ai/code/session_01KSADcDhYMud69Mr4xnLp2E
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 Windows target platform version constraint in the yip-app project file from a specific build (10.0.22621.0) to the generic latest (10.0), allowing the build system to automatically select the appropriate SDK version.
Changes
WindowsTargetPlatformVersionfrom10.0.22621.0to10.010.0.19041.0(Windows 11 21H2)Rationale
This change decouples the build from a specific Windows SDK patch version, allowing the build environment to use whatever latest SDK is installed while still respecting the minimum platform version constraint. This improves portability across different development machines and CI/CD environments without compromising the Win11 target requirement.
https://claude.ai/code/session_01KSADcDhYMud69Mr4xnLp2E