Initial source commit

This commit is contained in:
Anthony Leland 2020-09-21 01:52:28 -04:00
commit f175c36fce
20 changed files with 903 additions and 0 deletions

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

@ -0,0 +1,15 @@
name: .NET
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup msbuild
uses: microsoft/setup-msbuild@v1.0.1
- name: Install dependencies
run: nuget restore src
- name: Build
run: msbuild src /verbosity:normal /p:Configuration=Release