Skip to content

added <EnableWindowsTargeting>true</EnableWindowsTargeting> #12

added <EnableWindowsTargeting>true</EnableWindowsTargeting>

added <EnableWindowsTargeting>true</EnableWindowsTargeting> #12

Workflow file for this run

name: dotnet build & test
on: [push]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
include:
- dotnet-version: ' '
tfm: 'netcoreapp3.1'
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
- name: Install dependencies
run: dotnet restore -p:TargetFramework=${{ matrix.tfm }}
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test with the dotnet CLI
run: dotnet test --verbosity normal -f="${{ matrix.tfm }}"