From c9c8460c3cce7f27f7a3983961182d68534ff7ae Mon Sep 17 00:00:00 2001 From: PascalSenn Date: Tue, 27 Apr 2021 04:31:13 +0200 Subject: [PATCH] Fixed Swashbuckle ToDo Example (#22143) There were two Startup2 classes in the same namespace --- .../samples/3.0/TodoApi.Swashbuckle/Startup3.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/web-api-help-pages-using-swagger/samples/3.0/TodoApi.Swashbuckle/Startup3.cs b/aspnetcore/tutorials/web-api-help-pages-using-swagger/samples/3.0/TodoApi.Swashbuckle/Startup3.cs index f96d667277..ac31faf38b 100644 --- a/aspnetcore/tutorials/web-api-help-pages-using-swagger/samples/3.0/TodoApi.Swashbuckle/Startup3.cs +++ b/aspnetcore/tutorials/web-api-help-pages-using-swagger/samples/3.0/TodoApi.Swashbuckle/Startup3.cs @@ -6,7 +6,7 @@ using TodoApi.Models; namespace TodoApi { - public class Startup2 + public class Startup3 { #region snippet_ConfigureServices public void ConfigureServices(IServiceCollection services)