This repository has been archived by the owner on May 23, 2024. It is now read-only.
Merge pull request #43 from dotnet-architecture/dotnet8-update #19
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 | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '**.cs' | |
- '**.csproj' | |
- '**.xaml' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '**.cs' | |
- '**.csproj' | |
- '**.xaml' | |
env: | |
DOTNET_VERSION: '8.0.x' # The .NET SDK version to use | |
jobs: | |
build: | |
name: Build All Projects | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
project: | |
- eShopOnContainers | |
- eShopOnContainers.UnitTests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v1.1 | |
with: | |
vs-prerelease: true | |
- name: Install .NET workloads | |
shell: pwsh | |
run: | | |
dotnet workload install android | |
dotnet workload install ios | |
dotnet workload install maccatalyst | |
dotnet workload install maui | |
- name: Build ${{ matrix.project }} | |
run: dotnet build "${{ matrix.project }}/${{ matrix.project }}.csproj" |