Answers for "the same schemaid is already used for type swagger"

C#
0

the same schemaid is already used for type swagger

services.ConfigureSwaggerGen(options =>
   {
       //your custom configuration goes here
       // UseFullTypeNameInSchemaIds replacement for .NET Core
       options.CustomSchemaIds(x => x.FullName);
   });
Posted by: Guest on August-25-2020

C# Answers by Framework

Browse Popular Code Answers by Language