Skip to content

Update MainPage.xaml.cs #27

Update MainPage.xaml.cs

Update MainPage.xaml.cs #27

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: windows-2022
env:
Solution_Path: Sample\Auth0MauiApp.sln
steps:
- uses: actions/checkout@v4
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.402'
- name: Install .NET Workloads
run: dotnet workload install maui
- name: Build
run: dotnet build $env:Solution_Path --configuration Release