Add project files.

This commit is contained in:
Tony Bark 2020-12-08 17:56:38 -05:00
parent 52916f53b9
commit 2d6a9bb1d2
11 changed files with 863 additions and 0 deletions

26
.github/workflows/dotnet.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: .NET
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
dotnet: ["3.1.404", "5.0.101"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore