Update to SDK version 2025.0.14 #133
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: Build ALL (.Net 8 WinUI) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
env: | |
Solution_Name_MP1: "Media Player SDK/VisioForge.MediaPlayer.Demos.CS WinUI.sln" | |
Solution_Name_VC1: "Video Capture SDK/VisioForge.VideoCapture.Demos.CS WinUI.sln" | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | | |
8.0.x | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
## Media Player | |
- name: Restore dependencies $env:Solution_Name_MP1 | |
run: dotnet restore $env:Solution_Name_MP1 | |
- name: Build app for release $env:Solution_Name_MP1 | |
run: msbuild $env:Solution_Name_MP1 -t:rebuild -verbosity:diag -property:Configuration=Release | |
## Video Capture | |
- name: Restore dependencies $env:Solution_Name_VC1 | |
run: dotnet restore $env:Solution_Name_VC1 | |
- name: Build app for release $env:Solution_Name_VC1 | |
run: dotnet build $env:Solution_Name_VC1 --configuration Release --verbosity diagnostic | |
# run: msbuild $env:Solution_Name_VC1 -t:rebuild -verbosity:diag -property:Configuration=Release |