* Add Umbraco specific global usings * Enable implicit usings * v10: Wait for updated ConnectionStrings during install (#12536) * Do not change/reload configuration * Wait for updated connection string options * recase assigndomain (#12448) * Add depth property to ICoreScope (#12540) * Remove ambient scope stack from httpcontext.items. (#12539) This change makes it easier to use service calls in parallel whilst a httpcontext is available. * v10: Prefer SQLite primitive types to flexible types (#12541) * Prefer SQLite primitive types to flexible types. * SQLite - column mappings use TEXT for decimals Thanks @mattbrailsford for sense check. * Fix issue where languages files are not found in subdir of package dir (#12543) * Make FindContent return type nullable (#12545) * Updated nuget dependencies (07-06-2022) (#12525) * Updated nuget dependencies * Move Nerdbank.GitVersioning update to Directory.Build.props * Updated more dependencies * Improve FlagOutOfDateModels property behaviour. (cherry picked from commit 54077725c373495fce0d3fbc5cdb6469aad3b676) * Fix logic error WRT models builder flag out of date models. (#12548) (cherry picked from commit 6b0149803a879d1c6902a5f61d1f2e9dc8545aac) * Fixed issue with expected null value. (#12550) Fixes https://github.com/umbraco/Umbraco-CMS/issues/12526 * Updated Examine to 3.0.0 * Fixes relation issue, when moving a root item to recycle bin, the "Relate Parent Media Folder On Delete"/"Relate Parent Document On Delete" cannot get the parent node type, because it is a fake root. * Fix possible null error * Bump version to 10.0.0 final * Fix attempting to write lock files to LocalTempPath before it exists (#12563) * Re fix usage statements Co-authored-by: Ronald Barendse <ronald@barend.se> Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com> Co-authored-by: Paul Johnson <pmj@umbraco.com> Co-authored-by: Bjarke Berg <mail@bergmania.dk>
70 lines
2.4 KiB
C#
70 lines
2.4 KiB
C#
namespace Umbraco.Cms.Web.UI
|
|
{
|
|
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 hosting 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>
|
|
/// <param name="services">The services.</param>
|
|
/// <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)
|
|
{
|
|
services.AddUmbraco(_env, _config)
|
|
.AddBackOffice()
|
|
.AddWebsite()
|
|
.AddComposers()
|
|
.Build();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Configures the application.
|
|
/// </summary>
|
|
/// <param name="app">The application builder.</param>
|
|
/// <param name="env">The web hosting environment.</param>
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
{
|
|
if (env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
#if (UseHttpsRedirect)
|
|
|
|
app.UseHttpsRedirection();
|
|
#endif
|
|
|
|
app.UseUmbraco()
|
|
.WithMiddleware(u =>
|
|
{
|
|
u.UseBackOffice();
|
|
u.UseWebsite();
|
|
})
|
|
.WithEndpoints(u =>
|
|
{
|
|
u.UseInstallerEndpoints();
|
|
u.UseBackOfficeEndpoints();
|
|
u.UseWebsiteEndpoints();
|
|
});
|
|
}
|
|
}
|
|
}
|