Skip to content

Update README.md

Update README.md #6

Workflow file for this run

name: build dotnet
on:
push:
branches:
- main
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
dotnet-version: [ '10.0.x' ]
steps:
- uses: actions/checkout@v6
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Build
run: dotnet build