Files
Umbraco-CMS/src/Umbraco.Web.UI.NetCore/Startup.cs

49 lines
1.5 KiB
C#
Raw Normal View History

2020-02-18 08:32:06 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
2020-03-16 14:02:08 +01:00
using Microsoft.Extensions.Configuration;
2020-02-18 08:32:06 +01:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Umbraco.Web.BackOffice.AspNetCore;
2020-02-24 10:51:48 +01:00
using Umbraco.Web.Website.AspNetCore;
2020-02-18 08:32:06 +01:00
namespace Umbraco.Web.UI.BackOffice
{
public class Startup
{
2020-03-16 14:02:08 +01:00
2020-02-18 08:32:06 +01:00
// This method gets called by the runtime. Use this method to add services to the container.
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
public void ConfigureServices(IServiceCollection services)
{
2020-03-17 17:56:00 +01:00
services.AddUmbracoConfiguration();
2020-02-24 10:51:48 +01:00
services.AddUmbracoWebsite();
2020-02-18 08:32:06 +01:00
services.AddUmbracoBackOffice();
}
// 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();
}
2020-02-24 10:51:48 +01:00
app.UseUmbracoWebsite();
2020-02-18 08:32:06 +01:00
app.UseUmbracoBackOffice();
2020-02-24 10:51:48 +01:00
2020-02-18 08:32:06 +01:00
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapGet("/", async context => { await context.Response.WriteAsync("Hello World!"); });
});
}
}
}