* Rename Umbraco.Core namespace to Umbraco.Cms.Core * Move extension methods in core project to Umbraco.Extensions * Move extension methods in core project to Umbraco.Extensions * Rename Umbraco.Examine namespace to Umbraco.Cms.Examine * Move examine extensions to Umbraco.Extensions namespace * Reflect changed namespaces in Builder and fix unit tests * Adjust namespace in Umbraco.ModelsBuilder.Embedded * Adjust namespace in Umbraco.Persistence.SqlCe * Adjust namespace in Umbraco.PublishedCache.NuCache * Align namespaces in Umbraco.Web.BackOffice * Align namespaces in Umbraco.Web.Common * Ensure that SqlCeSupport is still enabled after changing the namespace * Align namespaces in Umbraco.Web.Website * Align namespaces in Umbraco.Web.UI.NetCore * Align namespaces in Umbraco.Tests.Common * Align namespaces in Umbraco.Tests.UnitTests * Align namespaces in Umbraco.Tests.Integration * Fix errors caused by changed namespaces * Fix integration tests * Undo the Umbraco.Examine.Lucene namespace change This breaks integration tests on linux, since the namespace wont exists there because it's only used on windows. * Fix merge * Fix Merge
67 lines
2.2 KiB
C#
67 lines
2.2 KiB
C#
using System;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Umbraco.Cms.Core.DependencyInjection;
|
|
using Umbraco.Extensions;
|
|
|
|
namespace Umbraco.Cms.Web.UI.NetCore
|
|
{
|
|
public class Startup
|
|
{
|
|
private readonly IWebHostEnvironment _env;
|
|
private readonly IConfiguration _config;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Startup"/> class.
|
|
/// </summary>
|
|
/// <param name="webHostEnvironment">The Web Host Environment</param>
|
|
/// <param name="config">The Configuration</param>
|
|
/// <remarks>
|
|
/// Only a few services are possible to be injected here https://github.com/dotnet/aspnetcore/issues/9337
|
|
/// </remarks>
|
|
public Startup(IWebHostEnvironment webHostEnvironment, IConfiguration config)
|
|
{
|
|
_env = webHostEnvironment ?? throw new ArgumentNullException(nameof(webHostEnvironment));
|
|
_config = config ?? throw new ArgumentNullException(nameof(config));
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Configures the services
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// 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
|
|
/// </remarks>
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
#pragma warning disable IDE0022 // Use expression body for methods
|
|
services.AddUmbraco(_env, _config)
|
|
.AddBackOffice()
|
|
.AddWebsite()
|
|
.AddComposers()
|
|
.Build();
|
|
#pragma warning restore IDE0022 // Use expression body for methods
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Configures the application
|
|
/// </summary>
|
|
public void Configure(IApplicationBuilder app)
|
|
{
|
|
if (_env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
|
|
app.UseUmbracoBackOffice();
|
|
app.UseUmbracoWebsite();
|
|
}
|
|
}
|
|
}
|