Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public void Configure(IApplicationBuilder app, IHostingEnvironment env)
  2. {
  3. if (env.IsDevelopment())
  4. {
  5. app.UseDeveloperExceptionPage();
  6. }
  7. app.UseStaticFiles();
  8. app.UseMvc(routes=>routes.MapRoute("default", "{controller=Home}/{action=Index}/{id?}"));
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement