-
Notifications
You must be signed in to change notification settings - Fork 20
U/sgriffin/vc2026 #167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
stephenegriffin
wants to merge
26
commits into
main
Choose a base branch
from
u/sgriffin/vc2026
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+205
−639
Open
U/sgriffin/vc2026 #167
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
c39ab11
Upgrade to Visual Studio 2026 (v145 toolset)
stephenegriffin 397ed25
ensure config
stephenegriffin 7a8ec30
install sdk
stephenegriffin f8efc98
update codeql
stephenegriffin 2405bc0
add arm builds
stephenegriffin f90d65c
Merge branch 'main' into u/sgriffin/vc2026
stephenegriffin 8e457ff
update ci for arm
stephenegriffin 8c7b20d
Remove Prefast configurations from mapistub
stephenegriffin bba20d7
replace broken clang action
stephenegriffin 14f70be
update clang action
stephenegriffin 0f6a5a4
Update .github/workflows/codeql.yml
stephenegriffin a0109fb
Update .github/workflows/codeql.yml
stephenegriffin 4186348
Update mapistub.sln
stephenegriffin eda8175
Update .github/workflows/github-ci.yml
stephenegriffin 3c74dae
fix sdk installer
stephenegriffin 096a611
better handling of sdk dependency
stephenegriffin 8862bc8
alternate attempt at sdk
stephenegriffin 8746341
better hash
stephenegriffin d7186a2
clean up project
stephenegriffin b41fde2
add arm builds
stephenegriffin a5125bb
fix args
stephenegriffin 9700f1f
merge with main
stephenegriffin 2b40870
Update .github/workflows/github-ci.yml
stephenegriffin 5154baa
mapistub: harden msbuild scripts, fix CodeQL SDK failure handling, an…
stephenegriffin de2788f
mapistub: dedupe SDK install in workflows and harden CI build/clean s…
stephenegriffin 776c362
Merge branch 'main' into u/sgriffin/vc2026
stephenegriffin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Project> | ||
| <PropertyGroup> | ||
| <!-- VS 2026 Toolset --> | ||
stephenegriffin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <PlatformToolset>v145</PlatformToolset> | ||
stephenegriffin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| <!-- Windows 11 SDK (pinned for reproducible builds) --> | ||
| <WindowsTargetPlatformVersion>10.0.22621.0</WindowsTargetPlatformVersion> | ||
|
|
||
| <!-- Security Features (PropertyGroup level) --> | ||
| <!-- Note: Spectre mitigated libs may not be available for ARM64/ARM64EC --> | ||
| <SpectreMitigation Condition="'$(Platform)' != 'ARM64' AND '$(Platform)' != 'ARM64EC'">Spectre</SpectreMitigation> | ||
| <SpectreMitigation Condition="'$(Platform)' == 'ARM64' OR '$(Platform)' == 'ARM64EC'">false</SpectreMitigation> | ||
| <ControlFlowGuard>Guard</ControlFlowGuard> | ||
| <GuardEHContMetadata>true</GuardEHContMetadata> | ||
stephenegriffin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </PropertyGroup> | ||
|
|
||
| <!-- Compiler Settings - Quality & Security Baseline --> | ||
| <!-- CET (Control-flow Enforcement Technology) enabled by default, disabled for ARM64/ARM64EC below --> | ||
| <ItemDefinitionGroup> | ||
| <ClCompile> | ||
| <WarningLevel>Level4</WarningLevel> | ||
| <TreatWarningAsError>true</TreatWarningAsError> | ||
| <SDLCheck>true</SDLCheck> | ||
| <LanguageStandard>stdcpplatest</LanguageStandard> | ||
| </ClCompile> | ||
| <Link> | ||
| <CETCompat>true</CETCompat> | ||
| </Link> | ||
| </ItemDefinitionGroup> | ||
|
|
||
| <!-- Disable CET for ARM64/ARM64EC (not supported) --> | ||
| <ItemDefinitionGroup Condition="'$(Platform)' == 'ARM64' OR '$(Platform)' == 'ARM64EC'"> | ||
| <Link> | ||
| <CETCompat>false</CETCompat> | ||
| </Link> | ||
| </ItemDefinitionGroup> | ||
| </Project> | ||
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.