how to disable "missing xml comment…" warning? – Asp.net
I add swagger to my asp.net project. there are a lot of warnings the warning code is blank. so I cannot disable it through 1591. please help me
I add swagger to my asp.net project. there are a lot of warnings the warning code is blank. so I cannot disable it through 1591. please help me
I containerized a .NET webapi service including swagger and swagger UI. dotnet run runs the app correctly but when I containerized it I became unable to visualize the UI Here is my dockerfile: FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal AS base WORKDIR /app EXPOSE…
When running a Standard ASP.NET Core Web API project created by Visual Studio 2022 with docker option enabled, connecting to the server via browser is possible by using https://localhost:65215/swagger/index.html (which even pops up by itself). When running the container with…
So I have a webapplication that is using axios to make endpoint request to my api that is on Swagger. In my app currently get and post calls work but not puts or deletes. For my delete call I pass…
I use annotations like this from the package Swashbuckle.AspNetCore.Annotations to define responses for swagger: [SwaggerResponse(200, "OK", typeof(SampleResponseClass))] Is it possible with this package to define also the headers of the response? And if not what other possibilities would there be?
I tried this and also this several links but not getting the answer. this is my startup.cs file public void ConfigureServices(IServiceCollection services) { services.AddControllers(); services.AddCommonService(Configuration); services.AddSecurityServiceRepositories(); services.AddSwaggerService(); } public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { app.UseSwaggerService(); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage();…
i'm migrating a modular app into a microsevrices app using spring cloud, when i finished migrating a module into microservice and ran it a problem came up saying : Correct the classpath of your application so that it contains a…
I was working on php version 7.2 but now upgrading to 7.4 gave an issue while generating l5-swagger. I read this stackoverflow qauestion which is not working for me. php artisan l5-swagger:generate Regenerating docs ErrorException : Trying to access array…
I'm looking for a project/tool that is able to get swagger / openapi specifications file as a parameter and generate a mock server that can be controlled programmatically via a REST API interface. For example - if my API contains…