This commit is contained in:
Jim Paine 2018-10-11 19:08:05 +01:00 коммит произвёл GitHub
Родитель 9a1e37386a
Коммит f9485a31ca
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -98,7 +98,11 @@ namespace ContosoMaintenance.WebAPI
{
c.SwaggerDoc(name, new Info { Title = $"Contoso Maintenance API - {name}", Version = "1.0" });
// The swagger filter takes the filter and removes any path that doesn't contain
// the value of the filter in its route. Allowing for us to seperate out the generated
// swagger documents
c.DocumentFilter<SwaggerFilter>(name, filter);
// Set the comments path for the Swagger JSON and UI.
var xmlFile = $"{Assembly.GetEntryAssembly().GetName().Name}.xml";
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);