Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .aspire/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"appHostPath": "../src/Den.AppHost/Den.AppHost.csproj"
}
382 changes: 382 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @roostmoe/sig-den
26 changes: 26 additions & 0 deletions .github/workflows/dotnet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: .NET CI

on:
push:
branches: [main]
paths-ignore:
- '**.md'
- 'src/Den.Client/**'
- 'tests/Den.Client.UnitTests/**'

pull_request:
paths-ignore:
- '**.md'
- 'src/Den.Client/**'
- 'tests/Den.Client.UnitTests/**'

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-dotnet@v5
- run: dotnet build den.slnx
- run: dotnet test den.slnx
Loading
Loading