Skip to content

Commit cf817ba

Browse files
fixes
1 parent 99ca007 commit cf817ba

3 files changed

Lines changed: 9 additions & 15 deletions

File tree

.config/dotnet-tools.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
"dataprovider-sqlite"
3030
],
3131
"rollForward": false
32+
},
33+
"h5-compiler": {
34+
"version": "26.3.64893",
35+
"commands": [
36+
"h5"
37+
],
38+
"rollForward": false
3239
}
3340
}
3441
}

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ If the TMC server is available:
4444

4545
## Logging Standards
4646

47-
- **Use a structured logging library.** Never use `Console.WriteLine` or `Debug.WriteLine` for diagnostics. Use `Microsoft.Extensions.Logging` with Serilog.
47+
- **Use a structured logging library.** Never use `Console.WriteLine` or `Debug.WriteLine` for diagnostics. Use `Microsoft.Extensions.Logging`.
4848
- **Log at entry/exit of all significant operations.** Use appropriate levels: `error`, `warn`, `info`, `debug`, `trace`.
4949
- **Logging must be throughout the app.** Every service, handler, and non-trivial operation should log. Silent failures are forbidden.
5050
- **SaaS / server apps:** Log to the database for persistence and queryability. Log calls that write to the database or file MUST be async or run on a background thread -- never block the request path with I/O logging.
@@ -56,7 +56,7 @@ If the TMC server is available:
5656

5757
| Language | Library | Notes |
5858
|----------|---------|-------|
59-
| C# | `Microsoft.Extensions.Logging` | With Serilog for structured output |
59+
| C# | `Microsoft.Extensions.Logging` | |
6060

6161
## Hard Rules -- C#
6262

Dashboard/Dashboard.Web/.config/dotnet-tools.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)