Skip to content

Bump xunit.runner.visualstudio from 2.8.2 to 3.0.0 #298

Bump xunit.runner.visualstudio from 2.8.2 to 3.0.0

Bump xunit.runner.visualstudio from 2.8.2 to 3.0.0 #298

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Build ${{ matrix.framework }}
runs-on: windows-latest
strategy:
matrix:
framework: [netstandard2.1]
steps:
- uses: actions/[email protected]
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 8.0
- name: Restore
run: dotnet restore
- name: Build
run: dotnet publish -c Release -f ${{ matrix.framework }} -o "${{github.workspace}}/Release" "NorthwoodLib"
- name: Upload a Build Artifact for ${{ matrix.framework }}
uses: actions/upload-artifact@v4
with:
name: NorthwoodLib-${{ matrix.framework }}
path: ${{github.workspace}}/Release