-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a969a8f
Showing
25 changed files
with
1,856 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[*] | ||
indent_style = space | ||
charset = utf-8 | ||
|
||
[*.{csproj,yml,yaml,conf}] | ||
indent_size = 2 | ||
|
||
[Directory.Build.props] | ||
indent_size = 2 | ||
|
||
[nuget.config] | ||
indent_size = 2 | ||
|
||
[*.{css,scss,js,ps1}] | ||
indent_size = 4 | ||
|
||
[*.cs] | ||
indent_size = 4 | ||
tab_width = 4 | ||
max_line_length = off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Set the default behavior, in case users don't have core.autocrlf set. | ||
* text=auto | ||
|
||
# Files that should always be normalized and converted to native line endings on checkout. | ||
*.js text | ||
*.json text | ||
*.ts text | ||
*.tsx text | ||
*.md text | ||
*.sh text eol=lf | ||
*.conf text eol=lf | ||
*.yml text eol=lf | ||
*.yaml text eol=lf | ||
*.Dockerfile text eol=lf | ||
LICENSE text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: CI build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: | | ||
3.1.x | ||
6.0.x | ||
- run: ./build.ps1 | ||
shell: pwsh | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: packages | ||
path: ./.output/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: NuGet push | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*.*.*" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: | | ||
3.1.x | ||
6.0.x | ||
- run: ./build.ps1 --target=push --nuget-api-key=${{ secrets.nuget_api_key }} --nuget-source=${{ secrets.nuget_source }} | ||
shell: pwsh | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: packages | ||
path: ./.output/**/* |
Oops, something went wrong.