Project DescriptionHiUpdateTools is a easy tools to use publish new version of your application
HiUpdate is tool that is full-integrat in Visual Studio. The tool is nearly finished but a lot works is before us :)


Integration to your application
[STAThread]
static void Main(string[] args)
{
Args = args;
Application.Run(new MainForm());
}
if (!Program.Args.Contains("/noupdate"))
{
using (UpdateChecker checker = new UpdateChecker("ClientConfig.xml", typeof(Program).Assembly.GetName().Version))
{
if (checker.Check())
{
checker.RunUpdate();
Application.Exit();
return;
}
}
}