Skip to content

Update README.md

Update README.md #55

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build-NML
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
Android:
runs-on: windows-2025
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore NeoModLoader_mobile.csproj
- name: Build
run: dotnet build NeoModLoader_mobile.csproj
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: NeoModLoader
path: |
bin\Debug\net8.0\NeoModLoader.*