You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
}
public void Configure(IApplicationBuilder app)
{
app.UseMvc();
// Handler of last Resort
app.Run(async (context) =>
{
await context.Response.WriteAsync($"Could not find request {context.Request.Path}. The Time is {DateTime.Now.ToString("hh:mm:ss tt")}. Have a nice day.");