diff options
| author | transtrike <transtrike@gmail.com> | 2020-12-07 22:37:08 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2020-12-07 22:37:08 +0200 |
| commit | c5dc3763babe083c88dbc927f996fb1bdda80359 (patch) | |
| tree | 814677cfb2c822d2e021a8aef66cee4fba924507 /Web/Startup.cs | |
| parent | 4e6ef3968021b7a1059b5abda034db8eabb50907 (diff) | |
| download | DevHive-c5dc3763babe083c88dbc927f996fb1bdda80359.tar DevHive-c5dc3763babe083c88dbc927f996fb1bdda80359.tar.gz DevHive-c5dc3763babe083c88dbc927f996fb1bdda80359.zip | |
Base line projects created
Diffstat (limited to 'Web/Startup.cs')
| -rw-r--r-- | Web/Startup.cs | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/Web/Startup.cs b/Web/Startup.cs new file mode 100644 index 0000000..51a6797 --- /dev/null +++ b/Web/Startup.cs @@ -0,0 +1,57 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.HttpsPolicy;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+
+namespace Web
+{
+ 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.AddControllersWithViews();
+ }
+
+ // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
+ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
+ {
+ if (env.IsDevelopment())
+ {
+ app.UseDeveloperExceptionPage();
+ }
+ else
+ {
+ app.UseExceptionHandler("/Home/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.UseEndpoints(endpoints =>
+ {
+ endpoints.MapControllerRoute(
+ name: "default",
+ pattern: "{controller=Home}/{action=Index}/{id?}");
+ });
+ }
+ }
+}
|
