Commenting out the Starter Kit installation for now as it isn't compatible

This commit is contained in:
elitsa
2020-01-21 15:41:35 +01:00
parent 258dcef773
commit 1bf1a86f94
2 changed files with 8 additions and 6 deletions

View File

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

View File

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