fix build

This commit is contained in:
Shannon
2019-11-12 16:44:13 +11:00
parent 161367bb71
commit 0b16d6dee1
2 changed files with 2 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ namespace Umbraco.Core.Runtime
// main dom
var mainDom = new MainDom(Logger);
// create the composition
// create the composition
composition = new Composition(register, typeLoader, ProfilingLogger, _state, configs);
composition.RegisterEssentials(Logger, Profiler, ProfilingLogger, mainDom, appCaches, databaseFactory, typeLoader, _state, IOHelper);

View File

@@ -258,7 +258,7 @@ namespace Umbraco.Tests.Runtimes
// create the register and the composition
var register = RegisterFactory.Create();
var composition = new Composition(register, typeLoader, profilingLogger, runtimeState);
composition.RegisterEssentials(logger, profiler, profilingLogger, mainDom, appCaches, databaseFactory, typeLoader, runtimeState);
composition.RegisterEssentials(logger, profiler, profilingLogger, mainDom, appCaches, databaseFactory, typeLoader, runtimeState, new IOHelper());
// create the core runtime and have it compose itself
var coreRuntime = new CoreRuntime();