Skip to content

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

Update .NET Framework to 4.8, migrate to sdk format

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

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: ${{matrix.windows-version}}
strategy:
matrix:
include:
- windows-version: windows-2019
visual-studio-version: 16.11
- windows-version: windows-2022
visual-studio-version: 17.10
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
with:
vs-version: ${{matrix.visual-studio-version}}
msbuild-architecture: x64
- name: Build Native Bridge
run: msbuild /p:Configuration=Release SharpShellNativeBridge
- name: Setup Dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Build SharpShell
run: dotnet build -c Release SharpShell
- name: Run Tests
run: dotnet test -c Release SharpShell || True
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{matrix.windows-version}}
path: |
SharpShellNativeBridge/artifacts
SharpShell/artifacts