Skip to content
Draft
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
6 changes: 6 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
"commands": [
"pwsh"
]
},
"hex1b.tool": {
"version": "0.75.0",
"commands": [
"hex1b"
]
}
}
}
10 changes: 10 additions & 0 deletions .github/skills/dependency-update/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Override repo-level analyzers for standalone tool scripts
[*.cs]
# Disable file header requirement
dotnet_diagnostic.IDE0073.severity = none
# Disable unused using warning (script may need conditional usings)
dotnet_diagnostic.IDE0005.severity = suggestion
# Disable ConfigureAwait requirement (not needed in console apps)
dotnet_diagnostic.CA2007.severity = none
# Disable locale-sensitive parsing warning
dotnet_diagnostic.CA1305.severity = none
8 changes: 8 additions & 0 deletions .github/skills/dependency-update/Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project>
<!-- Override the repo-level Central Package Management for single-file C# scripts in this directory.
The #:package directives in .cs files generate a csproj with inline PackageReference versions,
which conflicts with CPM. -->
<PropertyGroup>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>
</Project>
Loading