Swagger UI - Getting better documentation and playing around with your REST service
We so used to building REST or micro service. Now it makes sense to build better REST based services.
Better documentation with Swashbuckle.AspNetCore
It is always good to have SwaggerUI in your system as it gives you auto-generated, nicely layout way of documenting and interacting with your REST service.
Install-Package Swashbuckle.AspNetCore
Next, configure your startup.cs
Remember to browse to your swagger UI by :- http://localhost:5050/swagger/
Comments