their correct locations/namespaces/assemblies and obsoleted all of the old ones and ensure the old webforms files don't exist where the obsoleted ones were. Fixes a security issue with the installer ajax service (used to be p.aspx, now is InstallerRestService.aspx)
26 lines
564 B
C#
26 lines
564 B
C#
|
|
|
|
namespace Umbraco.Web.Install
|
|
{
|
|
internal abstract class InstallerStep
|
|
{
|
|
public abstract string Alias { get; }
|
|
public abstract string Name { get; }
|
|
public abstract string UserControl { get; }
|
|
public virtual int Index { get; set; }
|
|
|
|
public virtual bool MoveToNextStepAutomaticly { get; set; }
|
|
|
|
public virtual bool HideFromNavigation
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
public abstract bool Completed();
|
|
|
|
|
|
}
|
|
}
|