Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created November 11, 2019 19:13
Show Gist options
  • Save ahmetkucukoglu/ac473bf7217a688fb1d20af1593b0fdf to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/ac473bf7217a688fb1d20af1593b0fdf to your computer and use it in GitHub Desktop.
AWS Serverless Kuyruklama Sistemi Geliştirme - Startup.cs
namespace AwsDotnetCsharp
{
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseMvc();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment