Initial source commit
This commit is contained in:
commit
f175c36fce
20 changed files with 903 additions and 0 deletions
15
.github/workflows/dotnet.yml
vendored
Normal file
15
.github/workflows/dotnet.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue