mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
- Changed Raylib-cs.proj to use just one target framework. - Removed targets net47 and netcoreapp3.1 from Raylib-cs.csproj. - Removed netcoreapp3.1 from dotnetcore.yml workflow.
20 lines
453 B
YAML
20 lines
453 B
YAML
name: .NET Core
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build on dotnet using ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup .NET Core
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: 3.1.100
|
|
- name: Build with dotnet
|
|
run: dotnet build -c Release |