Fix codegen for HTTP endpoints with Startup.Configure() pattern#2366
Merged
jeremydmiller merged 1 commit intomainfrom Mar 29, 2026
Merged
Fix codegen for HTTP endpoints with Startup.Configure() pattern#2366jeremydmiller merged 1 commit intomainfrom
jeremydmiller merged 1 commit intomainfrom
Conversation
Fixes #2363 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This was referenced Mar 30, 2026
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.
Summary
Fixes #2363
Startup.Configure()hosting pattern,MapWolverineEndpoints()is called during host startup — not duringBuild(). The JasperFxcodegencommand only calledBuild(), soConfigure()never ran and HTTP endpoints were never discovered.--startflag to the codegen command. Runningdotnet run -- codegen write --startstarts the host before code generation, ensuringStartup.Configure()executes and all HTTP endpoints are discovered.StartupStyleTargetinsrc/Http/that uses the old Startup pattern and validates the fix —codegen write --startgenerates bothGET_api_test.csandPOST_api_items.cs.Usage for affected users
Test plan
dotnet run -- codegen writeon StartupStyleTarget produces no HTTP files (reproduces bug)dotnet run -- codegen write --starton StartupStyleTarget produces bothGET_api_test.csandPOST_api_items.cs(fix works)--start🤖 Generated with Claude Code