Updated setup components with v1.2.1 requirement for the installer
This commit is contained in:
parent
5b0180fecc
commit
beb7f40dd0
4 changed files with 257 additions and 165 deletions
|
@ -5,34 +5,45 @@ using System.Windows.Forms;
|
|||
|
||||
namespace WebsitePanel.Setup
|
||||
{
|
||||
/// <summary>
|
||||
/// Release 1.2.0
|
||||
/// </summary>
|
||||
public class StandaloneServerSetup120 : StandaloneServerSetup
|
||||
{
|
||||
public static new object Install(object obj)
|
||||
{
|
||||
return StandaloneServerSetup.InstallBase(obj, "1.2.0");
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Release 1.2.1
|
||||
/// </summary>
|
||||
public class StandaloneServerSetup121 : StandaloneServerSetup
|
||||
{
|
||||
public static new object Install(object obj)
|
||||
{
|
||||
return StandaloneServerSetup.InstallBase(obj, "1.2.1");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Release 1.1.0
|
||||
/// </summary>
|
||||
public class StandaloneServerSetup110 : StandaloneServerSetup
|
||||
{
|
||||
public static new object Install(object obj)
|
||||
{
|
||||
return StandaloneServerSetup.InstallBase(obj, "1.1.0");
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Release 1.2.0
|
||||
/// </summary>
|
||||
public class StandaloneServerSetup120 : StandaloneServerSetup
|
||||
{
|
||||
public static new object Install(object obj)
|
||||
{
|
||||
return StandaloneServerSetup.InstallBase(obj, "1.2.0");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Release 1.1.0
|
||||
/// </summary>
|
||||
public class StandaloneServerSetup110 : StandaloneServerSetup
|
||||
{
|
||||
public static new object Install(object obj)
|
||||
{
|
||||
return StandaloneServerSetup.InstallBase(obj, "1.1.0");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Release 1.0.2
|
||||
/// </summary>
|
||||
public class StandaloneServerSetup102 : StandaloneServerSetup101
|
||||
{
|
||||
public static new object Install(object obj)
|
||||
public static new object Install(object obj)
|
||||
{
|
||||
return StandaloneServerSetup.InstallBase(obj, "1.0.0");
|
||||
}
|
||||
|
@ -43,7 +54,7 @@ namespace WebsitePanel.Setup
|
|||
/// </summary>
|
||||
public class StandaloneServerSetup101 : StandaloneServerSetup
|
||||
{
|
||||
public static new object Install(object obj)
|
||||
public static new object Install(object obj)
|
||||
{
|
||||
return StandaloneServerSetup.InstallBase(obj, "1.0.0");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue