Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Last active May 28, 2022 10:56
Show Gist options
  • Save talkingdotnet/768adbb6594f85aa226f80255d3407f1 to your computer and use it in GitHub Desktop.
Save talkingdotnet/768adbb6594f85aa226f80255d3407f1 to your computer and use it in GitHub Desktop.
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
public void ConfigureServices(IServiceCollection services)
{
services.AddRazorPages();
}
public void Configure(WebApplication app, IWebHostEnvironment env)
{
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