Update dotnetcore.yml

This commit is contained in:
Garry Newman 2020-02-24 16:57:07 +00:00 committed by GitHub
parent f1e8664d28
commit a075810468
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,15 @@
name: .NET Core name: Build All
on: [push] on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v2 - name: setup-msbuild
- name: Setup .NET Core uses: microsoft/setup-msbuild@v1
uses: actions/setup-dotnet@v1
with: - name: Build with msbuild
dotnet-version: 2.2.108 run: msbuild Facepunch.Steamworks\Facepunch.Steamworks.Win64.csproj
- name: Build with dotnet
run: dotnet build --configuration Release