Update to SDK version 15.7.41 #432
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: Media Blocks SDK .Net Console | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
env: | |
Solution_Name_CS: "Media Blocks SDK/VisioForge.MediaBlocks.Demos.CS Console.sln" | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: | | |
6.0.x | |
- name: Setup .NET Framework | |
uses: actions/setup-dotnet@v2 | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
with: | |
vs-version: 17.0 | |
- name: Restore dependencies CS | |
run: dotnet restore $env:Solution_Name_CS | |
- name: Build app for release CS | |
run: msbuild $env:Solution_Name_CS -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 |