Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Created May 7, 2020 15:28
Show Gist options
  • Save CoreProgramm/3b69ff3dfbf19eda4ec1641624fda6ad to your computer and use it in GitHub Desktop.
Save CoreProgramm/3b69ff3dfbf19eda4ec1641624fda6ad to your computer and use it in GitHub Desktop.
Setup MVC Application
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseStaticFiles();
app.UseMvcWithDefaultRoute();
app.Run(async (context) =>
{
await context.Response.WriteAsync("Hello World!");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment