Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,10 @@ jobs:
--verbose

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
uses: microsoft/setup-msbuild@v3
if: ${{ env.HAS_BUILDABLE_COMPONENTS == 'true' }}
with:
vs-version: '[17.9,)'
vs-version: '[18.0,)'

# Generate full solution with all projects (sample gallery heads, components, tests)
- name: Generate solution with ${{ matrix.multitarget }} gallery, components and tests
Expand Down Expand Up @@ -315,9 +315,9 @@ jobs:
run: ./tooling/Install-WindowsSdk.ps1

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
uses: microsoft/setup-msbuild@v3
with:
vs-version: '[17.9,)'
vs-version: '[18.0,)'

- name: Determine scheduled release commit range
if: ${{ startsWith(github.ref, 'refs/tags/') }}
Expand Down
4 changes: 2 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ git clone --recurse-submodules https://github.com/CommunityToolkit/Labs-Windows.

## Build Requirements

- Visual Studio 2022 (UWP & Desktop Workloads for .NET)
- .NET 9 SDK
- Visual Studio 2026 (UWP & Desktop Workloads for .NET)
- .NET 10 SDK
- Windows 10 SDK, version 2004 (10.0.19041.0)
- Windows 10 21H1 (Build 19043) or greater
- Run `dotnet tool restore` from the project root to install SlnGen
Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"sdk": {
"version": "9.0.310",
"version": "10.0.203",
"rollForward": "latestFeature"
},
"msbuild-sdks":
{
"MSBuild.Sdk.Extras":"3.0.23"
"MSBuild.Sdk.Extras":"3.0.44"
}
}
Loading