Skip to content

Instantly share code, notes, and snippets.

View bdollerup's full-sized avatar

Bjarne B. Dollerup bdollerup

View GitHub Profile
@bdollerup
bdollerup / Startup.cs
Created December 18, 2017 18:23 — forked from nzpcmad/Startup.cs
.NET Core MVC application to ADFS on Windows Server 2016
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseBrowserLink();
}