Browse Source

Syntax err edited.

pull/1882/head
Onurkan Bakırcı 2 years ago
committed by GitHub
parent
commit
3c90301bbb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 3 deletions
  1. +0
    -1
      src/Services/Catalog/Catalog.API/Startup.cs
  2. +0
    -1
      src/Services/Identity/Identity.API/Startup.cs
  3. +1
    -1
      src/Services/Webhooks/Webhooks.API/Startup.cs

+ 0
- 1
src/Services/Catalog/Catalog.API/Startup.cs View File

@ -242,7 +242,6 @@ public static class CustomExtensionMethods
Name = "Microsoft License",
Url = new Uri("https://microsoft.com/license")
}
});
});
return services;


+ 0
- 1
src/Services/Identity/Identity.API/Startup.cs View File

@ -109,7 +109,6 @@ namespace Microsoft.eShopOnContainers.Services.Identity.API
Name = "Microsoft License",
Url = new Uri("https://microsoft.com/")
}
});
});
var container = new ContainerBuilder();


+ 1
- 1
src/Services/Webhooks/Webhooks.API/Startup.cs View File

@ -139,7 +139,7 @@ static class CustomExtensionMethods
{
services.AddSwaggerGen(options =>
{
var basePath = AppDomain.CurrentDomain.BaseDirectory;
var basePath = AppDomain.CurrentDomain.BaseDirectory;
var fileName = typeof(Startup).GetTypeInfo().Assembly.GetName().Name + ".xml";
var xmlComments = Path.Combine(basePath, fileName);
options.IncludeXmlComments(xmlComments);


Loading…
Cancel
Save