Skip to content

Update to SDK version 15.7.39 #547

Update to SDK version 15.7.39

Update to SDK version 15.7.39 #547

name: Video Capture SDK .Net 6
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
env:
Solution_Name_1: "Video Capture SDK/VisioForge.VideoCapture.Demos.CS (NuGet) net6.sln"
Solution_Name_3: "Video Capture SDK/VisioForge.VideoCapture.Demos.CS.CV (NuGet) net6.sln"
runs-on: windows-2022
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
- name: Add msbuild to PATH
uses: microsoft/[email protected]
with:
vs-prerelease: true
- name: Restore dependencies 1
run: dotnet restore $env:Solution_Name_1
- name: Build app for release 1
run: msbuild $env:Solution_Name_1 -t:rebuild -verbosity:diag -property:Configuration=Release
- name: Restore dependencies 3
run: dotnet restore $env:Solution_Name_3
- name: Build app for release 3
run: msbuild $env:Solution_Name_3 -t:rebuild -verbosity:diag -property:Configuration=Release
# - name: Build
# run: dotnet build --no-restore _SOURCE\VisioForge.MediaFramework.Solution.sln
# - name: Test
# run: dotnet test --no-build --verbosity normal