using Microsoft.AspNetCore.Mvc.ApplicationModels; namespace AppModelSample.Conventions { public class EnableApiExplorerApplicationConvention : IApplicationModelConvention { public void Apply(ApplicationModel application) { application.ApiExplorer.IsVisible = true; } } }