From 39232d5c5caf7860b7bb63aced171b3caeb7c4ed Mon Sep 17 00:00:00 2001 From: Mike Kistler Date: Wed, 2 Jul 2025 07:23:50 -0700 Subject: [PATCH] Drop guidance on parameter binding attributes --- prompts/aspnet-minimal-api-openapi.prompt.md | 1 - 1 file changed, 1 deletion(-) diff --git a/prompts/aspnet-minimal-api-openapi.prompt.md b/prompts/aspnet-minimal-api-openapi.prompt.md index 9572f86..f684559 100644 --- a/prompts/aspnet-minimal-api-openapi.prompt.md +++ b/prompts/aspnet-minimal-api-openapi.prompt.md @@ -25,7 +25,6 @@ Your goal is to help me create well-structured ASP.NET Minimal API endpoints wit ## Type Handling - Use strongly-typed route parameters with explicit type binding -- Apply proper parameter binding with `[FromBody]`, `[FromRoute]`, `[FromQuery]` - Use `Results` to represent multiple response types - Return `TypedResults` instead of `Results` for strongly-typed responses - Leverage C# 10+ features like nullable annotations and init-only properties