DiskImager/DiskImager/Program.cs
Roman Belkov 43e1ec6f41 Licensed the code properly
+ changed assembly name to DiskImager (was DiskWriter)
2015-01-11 20:23:03 +03:00

36 lines
986 B
C#

/**
* DiskImager - a tool for writing / reading images on SD cards
*
* Copyright 2013, 2014 by Alex J. Lennon <ajlennon@dynamicdevices.co.uk>
*
* Licensed under GNU General Public License 3.0 or later.
* Some rights reserved. See LICENSE, AUTHORS.
*
* @license GPL-3.0+ <http://www.gnu.org/licenses/gpl-3.0.en.html>
*/
using System;
using System.Windows.Forms;
namespace DynamicDevices.DiskWriter
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
try
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
} catch(Exception e)
{
MessageBox.Show(e.Message + " | " + e.StackTrace);
}
}
}
}