Skip to content

update README.md

update README.md #103

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
DOTNET_VERSION: "8.0.x"
DOTNET_NOLOGO: true
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore dependencies
run: dotnet restore
- name: Build TypedSignalR.Client.DevTools.csproj
run: dotnet build ./src/TypedSignalR.Client.DevTools/TypedSignalR.Client.DevTools.csproj --no-restore