2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Update to net5.0 using a fix for net5.0 support in dotnetcore.yml

- Update actions/checkout to v2.
- setup-dotnet requires specific version or a wildcard so I changed it to 5.0.x so it targets any 5.0 version.
- Updated Raylib-cs.Tests to target net5.0 as we can now use it properly.
This commit is contained in:
ChrisDill 2020-11-28 14:48:02 +00:00
parent d0587eeb24
commit daa7f7241d
2 changed files with 4 additions and 6 deletions

View File

@ -1,5 +1,4 @@
name: .NET Core name: .NET Core
on: on:
push: push:
pull_request: pull_request:
@ -12,12 +11,11 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, windows-latest, macOS-latest] os: [ubuntu-latest, windows-latest, macOS-latest]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Setup .NET Core - name: Setup dotnet
uses: actions/setup-dotnet@v1 uses: actions/setup-dotnet@v1
with: with:
dotnet-version: 3.1.100 dotnet-version: 5.0.x
- name: Build with dotnet - name: Build with dotnet
run: dotnet build -c Release run: dotnet build -c Release

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks> <TargetFrameworks>net5.0</TargetFrameworks>
<Platforms>AnyCPU</Platforms> <Platforms>AnyCPU</Platforms>
<Configurations>Debug;Release</Configurations> <Configurations>Debug;Release</Configurations>
</PropertyGroup> </PropertyGroup>