Net8 support (#69) #123
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: VST.NET2 CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- uses: microsoft/[email protected] | |
- uses: nuget/setup-nuget@v1 | |
with: | |
nuget-version: latest | |
- name: Restore Dependencies | |
# run: nuget restore Source/Code/Jacobi.Vst.sln | |
run: msbuild Source/Code/Jacobi.Vst.sln /t:restore | |
- name: Build VST.NET x64 | |
run: msbuild Source/Code/Jacobi.Vst.sln /t:Rebuild /p:Configuration=Release /p:Platform=x64 | |
- name: Build VST.NET x86 | |
run: msbuild Source/Code/Jacobi.Vst.sln /t:Rebuild /p:Configuration=Release /p:Platform=x86 |