Conversation
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
…r-asp.net-core-82zxpv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
Code311.sln,global.json,Directory.Build.props,Directory.Build.targets, andDirectory.Packages.propsto pin SDK, enable analyzers/nullable/XML docs, and centralize package versions.src/:Code311.Ui.Abstractions,Code311.Ui.Core,Code311.Tabler.Core,Code311.Tabler.Components,Code311.Tabler.Dashboard, widget packages (DataTables,Calendar,Charts),Code311.Tabler.Mvc,Code311.Tabler.Razor,Code311.Persistence.EFCore,Code311.Licensing, and a hybrid demo hostCode311.Hostwith controllers, pages, views, and DI wiring inProgram.cs.README.md, ADRs underdocs/adr/, and an architecture proposal; set up a GitHub Actions CI workflow (.github/workflows/ci.yml) that restores, builds, and runs tests using the pinned .NET SDK.tests/that exercise abstractions, core orchestration, Tabler core/components/dashboard/widgets, persistence, licensing, and integration points for MVC/Razor adapters.Testing
.github/workflows/ci.ymlrunsdotnet restore Code311.sln,dotnet build Code311.sln --configuration Release --no-restore, anddotnet test Code311.sln --configuration Release --no-build --verbosity normalto validate the solution.dotnet test Code311.sln, covering unit and integration suites intests/*(examples:Code311.Tests.Tabler.Core,Code311.Tests.Tabler.Components,Code311.Tests.Licensing,Code311.Tests.Persistence.EFCore,Code311.Tests.Integration.Mvc,Code311.Tests.Integration.Razor), and all automated tests completed successfully in the validation run.dotnet buildand representative unit tests for mapping, widget slot initialization, EF Core preference store round‑trip, and licensing behavior, which passed in the run described above.Codex Task