Skip to content

Update .NET Framework to 4.8, migrate to sdk format #14

Update .NET Framework to 4.8, migrate to sdk format

Update .NET Framework to 4.8, migrate to sdk format #14

Workflow file for this run

name: Validate
on: [push, pull_request]
concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}
cancel-in-progress: true
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Build Native Bridge
run: dotnet build -c Release ./SharpShellNativeBridge/SharpShellNativeBridge.sln
- name: Build SharpShell
run: dotnet build -c Release ./SharpShell/SharpShell.sln
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
./SharpShellNativeBridge/artifacts
./SharpShell/artifacts