We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I have a minimal api in .net 7, I used WithSummary() and WithDescription() bur it doesn't generate anything in swagger ui!
WithSummary()
WithDescription()
app.MapGet("/api/v{version:apiVersion}/weatherforecast/byid", () => { return new List<string>(); }) .WithApiVersionSet(weatherforecasts) .HasApiVersion(1.0) .HasApiVersion(2.0) .WithName("weatherforecast-byid") .WithTags("WeatherForecast") .WithSummary("summary002") .WithDescription("description002");
The text was updated successfully, but these errors were encountered:
cc @captainsafia
Sorry, something went wrong.
This PR adds support for the new metadata: #2414
WithSummary
WithDescription
This is fixed in DotSwashbuckle
#2414 will resolve this.
Successfully merging a pull request may close this issue.
Hi,
I have a minimal api in .net 7, I used
WithSummary()
andWithDescription()
bur it doesn't generate anything in swagger ui!The text was updated successfully, but these errors were encountered: