Initial project's source code check-in.

This commit is contained in:
ptsurbeleu 2011-07-13 16:07:32 -07:00
commit b03b0b373f
4573 changed files with 981205 additions and 0 deletions

View file

@ -0,0 +1,62 @@
using System;
using System.Collections.Generic;
using System.Text;
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.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)
{
return StandaloneServerSetup.InstallBase(obj, "1.0.0");
}
}
/// <summary>
/// Release 1.0.1
/// </summary>
public class StandaloneServerSetup101 : StandaloneServerSetup
{
public static new object Install(object obj)
{
return StandaloneServerSetup.InstallBase(obj, "1.0.0");
}
}
/// <summary>
/// Release 1.0
/// </summary>
public class StandaloneServerSetup10 : StandaloneServerSetup
{
public static new object Install(object obj)
{
return StandaloneServerSetup.InstallBase(obj, "1.0.0");
}
}
}