Skip to content

Update README formatting for usage section #2

Update README formatting for usage section

Update README formatting for usage section #2

Workflow file for this run

name: CI
on:
push:
branches: [ "**" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0.x"
- name: Restore
run: dotnet restore
- name: Build (Release)
run: dotnet build --no-restore -c Release