help wanted
倉庫指標
- 星標
- (7,358 顆星)
- PR 合併指標
- (PR 指標待抓取)
描述
Using Nswag.Annotations.OpenApiOperation does not seem to work with the new minimal API.
Example code:
var app = builder.Build();
app.MapPost("/Test", Test).WithTags("MyTag");
[OpenApiOperation("MySummary", "MyDescription")]
static string Test(string foo) {
return foo;
}