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
17 changes: 15 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
version: 2
updates:
# NuGet — versions are centrally managed in src/Directory.Packages.props (CPM).
# NuGet — versions are centrally managed in src/Directory.Packages.props (CPM),
# plus the nbgv dotnet tool in /.config/dotnet-tools.json.
- package-ecosystem: "nuget"
directory: "/src"
directories:
- "/src"
- "/.config"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
Expand All @@ -11,10 +14,20 @@ updates:
avalonia:
patterns:
- "Avalonia*"
# Everything else lands in a single grouped PR, spanning both directories.
nuget:
patterns:
- "*"
exclude-patterns:
- "Avalonia*"

# GitHub Actions used by the workflows.
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
groups:
actions:
patterns:
- "*"
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dotnet test src/Remote.Adb.slnx
dotnet test src/Remote.Adb.slnx --filter "FullyQualifiedName~ClassName"
```

The SDK is pinned to `10.0.0` (`rollForward: latestMinor`) via `src/global.json`. `src/Directory.Build.props` applies `LangVersion=default`, `ImplicitUsings=enable`, and `Nullable=enable` solution-wide, and references JetBrains.Annotations and Nerdbank.GitVersioning (version derived from git history).
The SDK is pinned to `10.0.0` (`rollForward: latestMinor`) via `global.json` at the repo root. `src/Directory.Build.props` applies `LangVersion=default`, `ImplicitUsings=enable`, and `Nullable=enable` solution-wide, and references JetBrains.Annotations and Nerdbank.GitVersioning (version derived from git history).

## Package management

Expand Down