Update Lib.Harmony to version that supports .NET 10 #10
This file contains hidden or 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: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
| POWERSHELL_TELEMETRY_OPTOUT: 1 | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
| DOTNET_NOLOGO: true | |
| defaults: | |
| run: | |
| shell: pwsh | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ windows-latest ] | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Build | |
| run: ./build.ps1 -Force | |
| - uses: actions/upload-artifact@v4 | |
| if: matrix.os == 'windows-latest' | |
| with: | |
| name: ImpliedReflection | |
| path: ./Release/ImpliedReflection | |
| - uses: actions/upload-artifact@v4 | |
| if: matrix.os != 'windows-latest' | |
| with: | |
| name: ImpliedReflection-${{ matrix.os }} | |
| path: ./Release/ImpliedReflection |