diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89b26fb58..a70fed36a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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/') }} diff --git a/ReadMe.md b/ReadMe.md index d94b4e1a4..7ec102367 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -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 diff --git a/global.json b/global.json index 338ca727d..37872dfff 100644 --- a/global.json +++ b/global.json @@ -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" } }