Files
Umbraco-CMS/src/Umbraco.Web/Install/InstallSteps/UpgradeStep.cs
2014-03-16 19:37:08 +01:00

22 lines
620 B
C#

using Umbraco.Web.Install.Models;
namespace Umbraco.Web.Install.InstallSteps
{
/// <summary>
/// This step is purely here to show the button to commence the upgrade
/// </summary>
[InstallSetupStep(InstallationType.Upgrade,
"Upgrade", "upgrade", 1, "Upgrading Umbraco to the latest and greatest version.")]
internal class UpgradeStep : InstallSetupStep<object>
{
public override bool RequiresExecution(object model)
{
return true;
}
public override InstallSetupResult Execute(object model)
{
return null;
}
}
}