websitepanel/WebsitePanel.Installer/Sources/WebsitePanel.Setup/StandaloneServerSetup20.cs
2012-09-13 12:26:22 -07:00

18 lines
453 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace WebsitePanel.Setup
{
/// <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");
}
}
}