Skip to content

Commit fa91de2

Browse files
committed
Create initial library with MiniScaffold template
1 parent 82d327f commit fa91de2

30 files changed

Lines changed: 1248 additions & 3432 deletions

.github/workflows/build.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Build master
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
strategy:
9+
matrix:
10+
os: [ubuntu-latest, windows-latest, macOS-latest]
11+
dotnet: [3.1.100]
12+
runs-on: ${{ matrix.os }}
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Setup .NET Core
17+
uses: actions/setup-dotnet@v1
18+
with:
19+
dotnet-version: ${{ matrix.dotnet }}
20+
- name: Build
21+
if: runner.os != 'Windows'
22+
run: |
23+
chmod +x ./build.sh
24+
./build.sh
25+
env:
26+
# Work around https://github.com/actions/setup-dotnet/issues/29
27+
DOTNET_ROOT: ${{ runner.tool_cache }}/dncs/${{ matrix.dotnet }}/x64
28+
CI: true
29+
- name: Build
30+
if: runner.os == 'Windows'
31+
run: ./build.cmd
32+
env:
33+
# Work around https://github.com/actions/setup-dotnet/issues/29
34+
DOTNET_ROOT: ${{ runner.tool_cache }}/dncs/${{ matrix.dotnet }}/x64
35+
CI: true

Directory.Build.props

Lines changed: 0 additions & 13 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 170 deletions
This file was deleted.

0 commit comments

Comments
 (0)