-
For FastEndpoints.ClientGen.Kiota (5.26.0.27-beta), if you specify CleanOutput for a client, you will get a `System.IO.FileNotFoundException`.
```cs
await app.GenerateApiClientsAndExitAsync(
…
-
### Description
The `SendCreatedAt` method in the FastEndpoints library does not properly redirect to the intended endpoint. The issue arises because the `typeof(TEndpoint).EndpointName(verb?.ToStrin…
-
so in the operation processor, you're assigning the ref directly to the param object via Schema; this causes invalid swagger which makes the default value not populate
https://github.com/FastEndpoi…
-
Version: 5.27.0.6-beta
Version without the same issue: 5.27.0
I have tried the fix for #733 in the new beta and since I am using Serilog in my project, I have discovered that it breaks after the u…
vzam updated
4 months ago
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Describe the bug
It looks like minimal apis adds a ProducesResponseTypeMetadata with status 200 automati…
-
First time using FastEndpoints and do love the concept and how works in general. But, now I'm running into an issue with generating a client of the the project w/Kiota. When I use the `MapApiClientEnd…
-
```
using FastEndpoints;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
builder.Services.AddFastEndpoints();
…
-
Given this endpoint
public override async Task HandleAsync(Appointment req, CancellationToken ct)
{
if (ValidationFailed)
{
await SendErrorsAsync(cancellation: ct…
-
I want to have an endpoint return a polymorphic response. I thought that I could do that using the TypedResults and defining the Results like this:
```c#
Results
```
But in the Swagger only th…
-
Extension methods exist that allow for a derived version of a FastEndpoints endpoint to be used to simply return a `Result`. It also extends the invalid request behavior by transforming `IEnumerable`…