diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-10 23:03:55 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-10 23:03:55 +0000 |
commit | ce81b993fd271be9552799eabb324d5c7ca1c5bb (patch) | |
tree | 324ace8b17c07bd53829f4e26a524727dbee3ec4 /Server/Startup.cs | |
parent | 6f3c6b4e4980dbff22cbe746188eae4b52b0aad2 (diff) | |
download | newsaggregator-ce81b993fd271be9552799eabb324d5c7ca1c5bb.tar.gz newsaggregator-ce81b993fd271be9552799eabb324d5c7ca1c5bb.tar.bz2 newsaggregator-ce81b993fd271be9552799eabb324d5c7ca1c5bb.zip |
Made project for ASP.NET server
Diffstat (limited to 'Server/Startup.cs')
-rw-r--r-- | Server/Startup.cs | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Server/Startup.cs b/Server/Startup.cs new file mode 100644 index 0000000..08d1df4 --- /dev/null +++ b/Server/Startup.cs @@ -0,0 +1,41 @@ +using System;
+using System.Collections.Generic;
+using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.Http;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace Server {
+ 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.Configure<CookiePolicyOptions>(options => {
+ // This lambda determines whether user consent for non-essential cookies is needed for a given request.
+ options.CheckConsentNeeded = context => true;
+ options.MinimumSameSitePolicy = SameSiteMode.None;
+ });
+ }
+
+ // 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.UseExceptionHandler("/Error");
+ app.UseHsts();
+ }
+
+ app.UseHttpsRedirection();
+ app.UseStaticFiles();
+ app.UseCookiePolicy();
+ }
+ }
+}
|