Skip to content

Update Lib.Harmony to version that supports .NET 10 #10

Update Lib.Harmony to version that supports .NET 10

Update Lib.Harmony to version that supports .NET 10 #10

Workflow file for this run

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