mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -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:
parent
d0587eeb24
commit
daa7f7241d
8
.github/workflows/dotnetcore.yml
vendored
8
.github/workflows/dotnetcore.yml
vendored
@ -1,5 +1,4 @@
|
||||
name: .NET Core
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
@ -12,12 +11,11 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Setup .NET Core
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup dotnet
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: 3.1.100
|
||||
dotnet-version: 5.0.x
|
||||
- name: Build with dotnet
|
||||
run: dotnet build -c Release
|
||||
|
@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
|
||||
<TargetFrameworks>net5.0</TargetFrameworks>
|
||||
<Platforms>AnyCPU</Platforms>
|
||||
<Configurations>Debug;Release</Configurations>
|
||||
</PropertyGroup>
|
||||
|
Loading…
x
Reference in New Issue
Block a user