Standardize the case of file names and how they are referenced in

ROMVault2.csproj so its possible to compile on a case sensitive
filesystem (ie mono on linux)
This commit is contained in:
Jim Westfall
2014-10-18 16:36:00 -07:00
parent 5d7aa95445
commit 891f53ef34
22 changed files with 30 additions and 30 deletions

40
ROMVault2/FrmHelpAbout.cs Normal file
View File

@@ -0,0 +1,40 @@
/******************************************************
* ROMVault2 is written by Gordon J. *
* Contact gordon@romvault.com *
* Copyright 2014 *
******************************************************/
using System;
using System.Windows.Forms;
namespace ROMVault2
{
public partial class frmHelpAbout : Form
{
public frmHelpAbout()
{
InitializeComponent();
Text = "Version "+Program.Version+"." + Program.SubVersion + " : " + Application.StartupPath;
lblVersion.Text = "Version "+Program.Version+"." + Program.SubVersion;
}
private void label1_Click(object sender, EventArgs e)
{
string url = "http://www.romvault.com/";
System.Diagnostics.Process.Start(url);
}
private void label2_Click(object sender, EventArgs e)
{
try
{
string url = "mailto:support@romvault.com?subject=Support " + Program.Version + "." + Program.SubVersion;
System.Diagnostics.Process.Start(url);
}
catch
{ }
}
}
}