Skip to content

Add settings UI with configurable logging #13

Add settings UI with configurable logging

Add settings UI with configurable logging #13

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
env:
DOTNET_VERSION: '8.0.x'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
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
run: dotnet build -c Release --no-restore
- name: Publish (verify publishable)
run: |
dotnet publish src/SendSpinClient/SendSpinClient.csproj -c Release -r win-x64 --self-contained false -o publish/win-x64