Skip to content

Add missing font

Add missing font #45

Workflow file for this run

name: SysDVR-Client dotnet build
# This is the "cross platform" build of SysDVR-Client, it only produces clean .net binaries without dependencies
# All the other builds are platform specific and produce a native AOT build with all the dependencies included
on:
push:
branches: [ master ]
paths:
- Client/**
# but not the multiplatform builds
- '!Client/Platform/Android/**'
- '!Client/Platform/Linux/**'
pull_request:
branches: [ master ]
paths:
- Client/**
- '!Client/Platform/Android/**'
- '!Client/Platform/Linux/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.x
- name: Run dotnet build
run: |
cd Client
dotnet build -c Release
- uses: actions/upload-artifact@v3
with:
name: SysDVR-Client-dotnet.zip
path: Client/bin/Release/net8.0/