.NET Core API - method appears in Swagger UI locally but not in deployed version

210 Views Asked by At

I'm working on an existing .NET Core API. I've created a new method and I can see the new method with the old methods and it works as expected through Swagger UI locally. The build has been deployed however I can't see the new method in Swagger UI on the deployed version. I can only see the old methods. Why might that be?

Swashbuckle setup:

        services.AddSwaggerGen(c =>
        {
            c.SwaggerDoc("v1", new Microsoft.OpenApi.Models.OpenApiInfo { Title = "Test API", Description = "Test API", Version = "v1" });
            c.CustomSchemaIds(x => x.FullName);
            c.IncludeXmlComments(Path.Combine(System.AppContext.BaseDirectory, @"TestAPI.API.xml"));
            c.OperationFilter<AddRequiredClientInstanceIdHeaderParameter>();
            c.OrderActionsBy(x => x.HttpMethod);
        });
0

There are 0 best solutions below