Adds the plumbing back for when the new V8 compat SK is on our.umb

This commit is contained in:
Warren Buckley
2019-02-08 11:09:09 +00:00
parent 9eaa0361be
commit 393b8f08c8
2 changed files with 6 additions and 8 deletions

View File

@@ -20,10 +20,9 @@ namespace Umbraco.Web.Composing.Composers
composition.Register<DatabaseInstallStep>(Lifetime.Scope);
composition.Register<DatabaseUpgradeStep>(Lifetime.Scope);
// TODO: Add these back once we have a compatible starter kit
//container.Register<StarterKitDownloadStep>(Lifetime.Scope);
//container.Register<StarterKitInstallStep>(Lifetime.Scope);
//container.Register<StarterKitCleanupStep>(Lifetime.Scope);
composition.Register<StarterKitDownloadStep>(Lifetime.Scope);
composition.Register<StarterKitInstallStep>(Lifetime.Scope);
composition.Register<StarterKitCleanupStep>(Lifetime.Scope);
composition.Register<SetUmbracoVersionStep>(Lifetime.Scope);

View File

@@ -26,10 +26,9 @@ namespace Umbraco.Web.Install
a.OfType<DatabaseInstallStep>().First(),
a.OfType<DatabaseUpgradeStep>().First(),
// TODO: Add these back once we have a compatible starter kit
//orderedInstallerSteps.OfType<StarterKitDownloadStep>().First(),
//orderedInstallerSteps.OfType<StarterKitInstallStep>().First(),
//orderedInstallerSteps.OfType<StarterKitCleanupStep>().First(),
a.OfType<StarterKitDownloadStep>().First(),
a.OfType<StarterKitInstallStep>().First(),
a.OfType<StarterKitCleanupStep>().First(),
a.OfType<SetUmbracoVersionStep>().First(),
};