About 36,600 results
Open links in new tab
  1. Get started with Swashbuckle and ASP.NET Core

    Oct 27, 2025 · Learn how to add Swashbuckle to your ASP.NET Core web API project to integrate the Swagger UI.

  2. ASP.NET Core web API documentation with Swagger / OpenAPI

    Aug 26, 2024 · Both Swashbuckle and NSwag include an embedded version of Swagger UI, so that it can be hosted in your ASP.NET Core app using a middleware registration call. The web UI looks like …

  3. How to enable OpenAPI v3 in in Azure Function isolated model with …

    Nov 25, 2024 · Hello 👋🏼 colleague @Anonymous To enable OpenAPI v3 in Azure Function isolated model with .NET 8.0, you can use the Swashbuckle.AspNetCore NuGet package. Here are the steps to …

  4. 開始使用 Swashbuckle 及 ASP.NET Core | Microsoft Learn

    了解如何將 Swashbuckle 新增至 ASP.NET Core Web API 專案,以整合 Swagger UI。

  5. Use OpenAPI with gRPC JSON transcoding ASP.NET Core apps

    Feb 21, 2025 · Get started To enable OpenAPI with gRPC JSON transcoding: Setup gRPC JSON transcoding by following the getting started instructions. Add a package reference to …

  6. Swagger AddSecurityRequirement Fails After Migrating from .NET 8 to ...

    Dec 4, 2025 · After reviewing your snippet, the main issue is similar to the previous one: Swashbuckle v10 requires a delegate for AddSecurityRequirement, and for OAuth2 you also need to include the …

  7. swagger setup error in the .net 8 - Microsoft Q&A

    Feb 3, 2024 · Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Failed to generate Operation for action - API.Controllers.OrdersController.GetOrdersForUser (API). See inner exception

  8. .NET 9 OpenAPI document not generating at build time (Microsoft ...

    Apr 15, 2025 · You're absolutely right in your suspicion — solving the issue by removing Swashbuckle.AspNetCore.SwaggerGen. The core issue is a conflict between Swashbuckle and …

  9. Generate OpenAPI documents | Microsoft Learn

    Dec 10, 2025 · A Minimal API app can describe the OpenAPI specification for route handlers using Swashbuckle. For information about support for OpenAPI in controller-based APIs, see the .NET 9 …

  10. Breaking change: Deprecation of WithOpenApi extension method - .NET

    Aug 8, 2025 · { // Per-endpoint tweaks operation.Summary = "Gets the current weather report."; operation.Description = "Returns a short description and emoji."; return Task.CompletedTask; }); …