29 lines
768 B
C#
29 lines
768 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace WebsitePanel.Setup
|
|
{
|
|
/// <summary>
|
|
/// Release 2.1.0
|
|
/// </summary>
|
|
public class StandaloneServerSetup210 : StandaloneServerSetup
|
|
{
|
|
public static new object Install(object obj)
|
|
{
|
|
return StandaloneServerSetup.InstallBase(obj, minimalInstallerVersion: "2.0.0");
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Release 2.0.0
|
|
/// </summary>
|
|
public class StandaloneServerSetup200 : StandaloneServerSetup
|
|
{
|
|
public static new object Install(object obj)
|
|
{
|
|
return StandaloneServerSetup.InstallBase(obj, minimalInstallerVersion: "2.0.0");
|
|
}
|
|
}
|
|
}
|