// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, IServiceProvider serviceProvider, IApplicationConfiguration applicationConfiguration) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } else { app.UseExceptionHandler("/Error"); app.UseHsts(); } loggerFactory.AddApplicationInsights(serviceProvider, LogLevel.Information); TelemetryConfiguration.Active.TelemetryInitializers.Add(new VersionTelemetry()); // Retreive application specific config from Azure AD applicationConfiguration.InitializeAsync().Wait(); JsonSerializerSettings jsonSettingsProvider() { var settings = new JsonSerializerSettings { ContractResolver = new CoreContractResolver(app.ApplicationServices), }; return(settings); } JsonConvert.DefaultSettings = jsonSettingsProvider; // This is here because we need to P/Invoke into clr.dll for _AxlPublicKeyBlobToPublicKeyToken var is64bit = IntPtr.Size == 8; var windir = Environment.GetEnvironmentVariable("windir"); var fxDir = is64bit ? "Framework64" : "Framework"; var netfxDir = $@"{windir}\Microsoft.NET\{fxDir}\v4.0.30319"; AddEnvironmentPaths(new[] { netfxDir }); app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseSession(); app.UseAuthentication(); app.UseMvc(routes => { routes.MapRoute( name: "default", template: "{controller=Home}/{action=Index}/{id?}"); }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApplicationConfiguration applicationConfiguration) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } else { app.UseExceptionHandler("/Error"); app.UseHsts(); } // Retreive application specific config from Azure AD applicationConfiguration.InitializeAsync().Wait(); JsonSerializerSettings jsonSettingsProvider() { var settings = new JsonSerializerSettings { ContractResolver = new CoreContractResolver(app.ApplicationServices), }; return(settings); } JsonConvert.DefaultSettings = jsonSettingsProvider; // This is here because we need to P/Invoke into clr.dll for _AxlPublicKeyBlobToPublicKeyToken var is64bit = IntPtr.Size == 8; var windir = Environment.GetEnvironmentVariable("windir"); var fxDir = is64bit ? "Framework64" : "Framework"; var netfxDir = $@"{windir}\Microsoft.NET\{fxDir}\v4.0.30319"; AddEnvironmentPaths(new[] { netfxDir }); app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseSession(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllerRoute( name: "default", pattern: "{controller=Home}/{action=Index}/{id?}"); endpoints.MapRazorPages(); }); }