Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Generate Documentation in Build #28

Merged
merged 9 commits into from
Oct 23, 2018
Prev Previous commit
Next Next commit
removed ftl exception on startup that did nothing
  • Loading branch information
thefringeninja committed Oct 22, 2018
commit 8323818ce5f02d73c1913467abd9ef00bdbfa43b
3 changes: 1 addition & 2 deletions src/SqlStreamStore.HAL.DevServer/WebHostBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ internal static class WebHostBuilderExtensions
{
public static IWebHostBuilder UseStartup(this IWebHostBuilder builder, IStartup startup)
=> builder
.ConfigureServices(services => services.AddSingleton(startup))
.UseSetting(WebHostDefaults.ApplicationKey, startup.GetType().AssemblyQualifiedName);
.ConfigureServices(services => services.AddSingleton(startup));
}
}