Update .NET Framework to 4.8, migrate to sdk format #5
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: Validate | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- windows-version: windows-2019 | |
visual-studio-version: 16.11 | |
- windows-version: windows-2022 | |
visual-studio-version: 17.3 | |
runs-on: ${{ matrix.windows-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- 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,Platform=x64 ./SharpShellNativeBridge/SharpShellNativeBridge.sln | |
- name: Build SharpShell | |
run: msbuild /p:Configuration=Release ./SharpShell/SharpShell.sln | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.windows-version }} | |
path: | | |
./SharpShellNativeBridge/artifacts | |
./SharpShell/artifacts |