-
Notifications
You must be signed in to change notification settings - Fork 0
Add DotNetConsoleLogger #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces the DotNetConsoleLogger static class for fallback logging, adds a CI check to validate dependency injection setup, and upgrades dependency packages to their latest versions.
- Introduces
DotNetConsoleLoggerstatic class for centralized logger initialization and management - Adds CI validation using
dotnet run -- check-depsto verify DI setup - Updates dependency packages (Scrutor, Microsoft.Extensions, test packages) to latest versions
Reviewed Changes
Copilot reviewed 25 out of 29 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Comprehensive documentation update with installation guide, usage examples, and check-deps explanation |
| Neolution.DotNet.Console/DotNetConsoleLogger.cs | New static logger class providing initialization, access, and shutdown methods |
| Neolution.DotNet.Console/DotNetConsole.cs | Updated to use DotNetConsoleLogger instead of direct NLog setup |
| Neolution.DotNet.Console/DotNetConsoleException.cs | Removed obsolete serialization constructor and attributes |
| .github/workflows/ci.yml | Added CI step to validate DI setup using check-deps command |
| Various project files | Package version updates and demo application restructuring |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
DotNetConsoleLoggerfor fallback logging.dotnet run -- check-depsto ensure proper dependency resolution and prevent runtime errors.