22 lines
620 B
C#
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;
|
|
}
|
|
}
|
|
} |