Create project to use locales in MAUI #599
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: .NET Core | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: Ubuntu-22.04 | |
strategy: | |
matrix: | |
dotnet-version: [6, 7, 8] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup dotnet ${{ matrix.dotnet-version }}.0.x | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }}.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
working-directory: ./src/Blazor-ApexCharts | |
- name: Build Main | |
run: dotnet build --configuration Release --no-restore --framework net${{ matrix.dotnet-version }}.0 | |
working-directory: ./src/Blazor-ApexCharts | |
- name: Install .NET MAUI | |
if: ${{ matrix.dotnet-version == 8 }} | |
run: | |
dotnet workload install maui | |
dotnet restore | |
working-directory: ./src/Blazor-ApexCharts-MAUI | |
- name: Build MAUI | |
if: ${{ matrix.dotnet-version == 8 }} | |
run: dotnet build --configuration Release --no-restore --framework net${{ matrix.dotnet-version }}.0 | |
working-directory: ./src/Blazor-ApexCharts-MAUI |