Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

[net8.0] fix C# compiler error involving x:Name #93

[net8.0] fix C# compiler error involving x:Name

[net8.0] fix C# compiler error involving x:Name #93

Workflow file for this run

name: Podcast Mobile CI
on:
push:
branches:
- main
- 'maui/perf'
- 'net8.0'
pull_request:
branches:
- main
- 'maui/perf'
- 'net8.0'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-mobile:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: install MAUI workload
shell: pwsh
run: |
& .\dotnet workload install maui
- name: build Microsoft.NetConf2021.Maui.csproj
shell: pwsh
run: |
& .\dotnet build src/Mobile/Microsoft.NetConf2021.Maui.csproj -bl:mobile.binlog
- name: archive logs
if: always()
uses: actions/upload-artifact@v2
with:
name: logs
path: '*.binlog'