Skip to content

Commit f6be00f

Browse files
committed
initial commit
0 parents  commit f6be00f

15 files changed

+553
-0
lines changed

.gitattributes

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
5+
# Custom for Visual Studio
6+
*.cs diff=csharp
7+
*.sln merge=union
8+
*.csproj merge=union
9+
*.vbproj merge=union
10+
*.fsproj merge=union
11+
*.dbproj merge=union
12+
13+
# Standard to msysgit
14+
*.doc diff=astextplain
15+
*.DOC diff=astextplain
16+
*.docx diff=astextplain
17+
*.DOCX diff=astextplain
18+
*.dot diff=astextplain
19+
*.DOT diff=astextplain
20+
*.pdf diff=astextplain
21+
*.PDF diff=astextplain
22+
*.rtf diff=astextplain
23+
*.RTF diff=astextplain
24+
25+
# Needed for Mono build shell script
26+
*.sh -text eol=lf
27+
28+
# Needed for API Approvals
29+
*.txt text eol=crlf
30+
31+
build.sh eol=lf

.github/dependabot.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: github-actions
5+
directory: "/"
6+
schedule:
7+
interval: daily
8+
time: "11:00"
9+
10+
- package-ecosystem: nuget
11+
directory: "/"
12+
schedule:
13+
interval: daily
14+
time: "11:00"

.github/workflows/pr_validation.yaml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: pr_validation
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- dev
8+
- main
9+
pull_request:
10+
branches:
11+
- master
12+
- dev
13+
- main
14+
15+
jobs:
16+
test:
17+
name: Test-${{matrix.os}}
18+
runs-on: ${{matrix.os}}
19+
20+
strategy:
21+
matrix:
22+
os: [ubuntu-latest, windows-latest]
23+
24+
steps:
25+
- name: "Checkout"
26+
uses: actions/[email protected]
27+
with:
28+
lfs: true
29+
fetch-depth: 0
30+
31+
- name: "Install .NET SDK"
32+
uses: actions/[email protected]
33+
with:
34+
dotnet-version: |
35+
7.0.x
36+
global-json-file: "./global.json"
37+
38+
- name: "dotnet build"
39+
run: dotnet build -c Release
40+
41+
- name: "dotnet test"
42+
run: dotnet test -c Release

0 commit comments

Comments
 (0)