On Android load assets with a java helper rather than SDL, buildscrip… #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
with: | |
name: SysDVR-Client-dotnet.zip | |
path: Client/bin/Release/net8.0/ |