You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
using EVABackend.Areas.Identity.Data; |
|
using Microsoft.AspNetCore.Builder; |
|
using Microsoft.AspNetCore.Hosting; |
|
using Microsoft.AspNetCore.Identity; |
|
using Microsoft.AspNetCore.Mvc; |
|
using Microsoft.Extensions.Configuration; |
|
using Microsoft.Extensions.DependencyInjection; |
|
|
|
namespace EVABackend |
|
{ |
|
public class Startup |
|
{ |
|
public Startup(IConfiguration configuration) |
|
{ |
|
Configuration = configuration; |
|
} |
|
|
|
public IConfiguration Configuration { get; } |
|
|
|
// This method gets called by the runtime. Use this method to add services to the container. |
|
public void ConfigureServices(IServiceCollection services) |
|
{ |
|
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1); |
|
} |
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. |
|
public void Configure(IApplicationBuilder app, IHostingEnvironment env) |
|
{ |
|
if (env.IsDevelopment()) |
|
{ |
|
app.UseDeveloperExceptionPage(); |
|
} |
|
else |
|
{ |
|
app.UseHsts(); |
|
} |
|
|
|
app.UseStaticFiles(); |
|
app.UseAuthentication(); |
|
app.UseHttpsRedirection(); |
|
app.UseMvc(); |
|
} |
|
} |
|
}
|
|
|