Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2fff136
Bumped tooling pointer to latest PR draft
Arlodotexe May 13, 2026
94d5d38
Bumped runner to windows-2025 and added build step for Windows SDK in…
Arlodotexe May 13, 2026
5380d29
Updated tooling to latest main
Arlodotexe May 13, 2026
c223b77
Merge branch 'main' into check,ci/runner,images,github,actions/improv…
Avid29 May 15, 2026
91145f6
Migrate remaining mentions of windows-2022 to windows-2025
Arlodotexe May 15, 2026
e2e9184
Merge branch 'check,ci/runner,images,github,actions/improvement/windo…
Arlodotexe May 15, 2026
147b06e
Upgraded to large runners per https://github.com/CommunityToolkit/Win…
Arlodotexe May 15, 2026
3964cda
Use non-'large' runner for Xaml-Style-Check job
Arlodotexe May 15, 2026
aa305f0
Use 'windows-latest-large' until 'windows-2025-large' is available
Arlodotexe May 15, 2026
af6f647
Revert "Use 'windows-latest-large' until 'windows-2025-large' is avai…
Arlodotexe May 15, 2026
f3cc4d0
Merge branch 'main' into check,ci/runner,images,github,actions/improv…
Arlodotexe Sep 11, 2026
1a10d1e
Bumped tooling to latest PR branch
Arlodotexe Sep 11, 2026
34dcfc8
bump uno-check to 1.34.1
Arlodotexe Sep 11, 2026
cd22570
Pin uno-check manifest to enable installing net9 workloads until net1…
Arlodotexe Sep 11, 2026
8467152
Remove ISO-based Windows SDK installer, rely on runner image inbox Wi…
Arlodotexe Sep 11, 2026
2217afd
Revert uno-check manifest pinning, didn't work
Arlodotexe Sep 11, 2026
2c5289a
Bump tooling to latest PR version
Arlodotexe Sep 11, 2026
9d5cfda
Pin tooling submodule to .NET 10 PR branch
Sergio0694 Sep 16, 2026
c7f5a4a
Update slngen to 12.0.32
Arlodotexe Sep 16, 2026
373f75d
Update global.json to .NET 10.0.401
Arlodotexe Sep 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"uno.check": {
"version": "1.33.1",
"version": "1.34.1",
"commands": [
"uno-check"
]
Expand All @@ -15,7 +15,7 @@
]
},
"microsoft.visualstudio.slngen.tool": {
"version": "12.0.13",
"version": "12.0.32",
"commands": [
"slngen"
]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ env:
jobs:
# This workflow contains a single job called "Xaml-Style-Check"
Xaml-Style-Check:
runs-on: windows-2022
runs-on: windows-2025

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -57,7 +57,7 @@ jobs:
# Build both Uno.UI/WinUI2/UWP and Uno.WinUI/WinUI3/WindowsAppSDK versions of our packages using a matrix
build:
needs: [Xaml-Style-Check]
runs-on: windows-2022
runs-on: windows-2025-large

env:
PROCDUMP_PATH: ${{ github.workspace }}
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
dotnet-dump analyze ${{ steps.detect-dump.outputs.DUMP_FILE }} -c "clrstack" -c "pe -lines" -c "exit"

package:
runs-on: windows-2022
runs-on: windows-2025-large
needs: [build]
strategy:
fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them all to run to completion.
Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
sign:
needs: [package]
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/rel/') }}
runs-on: windows-2022
runs-on: windows-2025-large
permissions:
id-token: write # Required for requesting the JWT

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "9.0.310",
"version": "10.0.401",
"rollForward": "latestFeature"
},
"msbuild-sdks":
Expand Down
Loading