Bump Microsoft.Maui.Controls from 9.0.21 to 9.0.30 in /15. MVVM Architecture/src/2. MVVM Toolkit (C#) #4
Workflow file for this run
This file contains 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
name: Mobile | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
mobile: | |
strategy: | |
matrix: | |
os: [macos-15, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
# Install .NET SDK | |
- name: Setup .NET 8.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.x' # Adjust to your required .NET SDK version | |
- name: Setup .NET 9.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.x' # Adjust to your required .NET SDK version | |
- name: Install .NET MAUI | |
run: 'dotnet workload install maui' | |
- name: Install Xcode | |
if: runner.os == 'macOS' | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Display .NET Info | |
run: 'dotnet --info' | |
- name: Build Final Course Solution, MVVM Toolkit C# | |
run: | | |
dotnet build -c Release "./15. MVVM Architecture/src/2. MVVM Toolkit (C#)/HelloMaui.sln" | |
- name: Build Final Course Solution, MVVM Toolkit XAML | |
run: | | |
dotnet build -c Release "./15. MVVM Architecture/src/2a. MVVM Toolkit (XAML)/HelloMaui.sln" |