usingSystem;
usingSystem.Windows.Forms;
namespace ThoughtWorks.CruiseControl.MigrationWizard{
staticclassProgram
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
staticvoid Main()
{
var controller = newMainFormController();
controller.ShowUI();
}
}
}