Create LICENSE #52
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: Build and Test | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
name: Build Package | |
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 |