AbstractContentManager - Add IsShowing, Groups, GetAllShowingOfType #83
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: Mono Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
jobs: | |
build-mono: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
configuration: [ "Debug", "Release" ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up MSBuild | |
uses: microsoft/[email protected] | |
- name: Restore anvil-csharp-core | |
run: nuget restore anvil-csharp-core.csproj | |
- name: Restore anvil-csharp-logging | |
working-directory: Logging/.CSProject/ | |
run: nuget restore anvil-csharp-logging.csproj | |
- name: Build anvil-csharp-logging | |
working-directory: Logging/.CSProject/ | |
run: msbuild /p:Configuration=${{ matrix.configuration }} anvil-csharp-logging.csproj | |
- name: Build anvil-csharp-core | |
run: msbuild /p:Configuration=${{ matrix.configuration }} anvil-csharp-core.csproj |