// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env, TMCoreSeedData seedData) { if (env.IsDevelopment()) { app.UseBrowserLink(); app.UseDeveloperExceptionPage(); app.UseDatabaseErrorPage(); } else { app.UseDeveloperExceptionPage(); app.UseExceptionHandler("/Home/Error"); } Mapper.Initialize(config => { config.CreateMap <ContactViewModel, Contact>().ReverseMap(); config.CreateMap <InvoiceViewModel, Invoice>().ReverseMap(); }); app.UseStaticFiles(); app.UseAuthentication(); //app.UseStatusCodePagesWithRedirects("~/errors/{0}"); app.UseMvc(routes => { routes.MapRoute("areaRoute", "{area:exists}/{controller=Admin}/{action=Index}/{id?}"); //routes.MapRoute( // name: "defaultApi", // template: "api/{controller=Home}/{action=Index}/{id?}"); routes.MapRoute( name: "default", template: "{controller=Home}/{action=Index}/{id?}"); }); app.UseFileServer(); //seeding Data on startup! seedData.EnsureSeedData().Wait(); }
// 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, TMCoreSeedData seedData) { loggerFactory.AddConsole(Configuration.GetSection("Logging")); loggerFactory.AddDebug(); Mapper.Initialize(config => { config.CreateMap <CustomerForm, Customer>().ReverseMap(); }); app.UseApplicationInsightsRequestTelemetry(); app.UseExceptionHandler("/Home/Error"); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); app.UseDatabaseErrorPage(); app.UseBrowserLink(); } app.Use(async(context, next) => { if (context.Request.Path.Value.Contains("invalid")) { throw new Exception("ERROR!"); } await next(); }); app.UseApplicationInsightsExceptionTelemetry(); app.UseIdentity(); app.UseKendo(env); //app.UseStatusCodePagesWithRedirects("~/errors/{0}"); app.UseMvc(routes => { routes.MapRoute("areaRoute", "{area:exists}/{controller=Admin}/{action=Index}/{id?}"); //routes.MapRoute( // name: "defaultApi", // template: "api/{controller=Home}/{action=Index}/{id?}"); routes.MapRoute( name: "default", template: "{controller=Home}/{action=Index}/{id?}"); }); app.UseFileServer(); //seeding Data on startup! seedData.EnsureSeedData().Wait(); }