Hello,
I want to try the new OpenApi feature in my .NET Core Web Application already running with SwaggerFeature plugin : Swagger UI link is visible from /metadata page, and is working as excepted.
So I have replaced the Plugins.Add(new SwaggerFeature()); in my AppHost with Plugins.Add(new OpenApiFeature()); after installing the ServiceStack.Api.OpenApi.Core nuget package.
Compilation is ok ; Swagger UI link is still visible from /metadata page, but when I try to access it I have an HTTP 404 error.
Did I forget something ?
Thank you