Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Last active May 28, 2022 12:28
Show Gist options
  • Save talkingdotnet/5c49f39b954f1a8b6d5eed6073352d03 to your computer and use it in GitHub Desktop.
Save talkingdotnet/5c49f39b954f1a8b6d5eed6073352d03 to your computer and use it in GitHub Desktop.
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorPages();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.MapRazorPages();
app.Run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment