Voyager
Voyager copied to clipboard
A source generator to make request/endpoint/response even easier.
Results
2
Voyager issues
Sort by
recently updated
recently updated
newest added
When you use something like this: [FromRoute(Name="world")] public string Hello {get;set;} In combination with a validator, the validation errors will mark the erroneous field with "Hello" instead of the "world"...
If a function tries to return an anonymous type the source generator generates invalid code causing hard to understand compilation errors. ```c# public IResult Get() { return TypedResults.Ok(new { Value...