Adds the plumbing back for when the new V8 compat SK is on our.umb
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
@@ -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(),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user