├── .gitignore ├── LICENSE ├── ME7correction.sln ├── ME7correction ├── App.config ├── ME7correction.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── favicon.ico ├── frmMain.Designer.cs ├── frmMain.cs └── frmMain.resx ├── README.md └── me7utilities ├── ME7Check.exe └── me7sum.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/LICENSE -------------------------------------------------------------------------------- /ME7correction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction.sln -------------------------------------------------------------------------------- /ME7correction/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/App.config -------------------------------------------------------------------------------- /ME7correction/ME7correction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/ME7correction.csproj -------------------------------------------------------------------------------- /ME7correction/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ME7correction/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ME7correction/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/Properties/Resources.resx -------------------------------------------------------------------------------- /ME7correction/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ME7correction/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/Properties/Settings.settings -------------------------------------------------------------------------------- /ME7correction/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/favicon.ico -------------------------------------------------------------------------------- /ME7correction/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/frmMain.Designer.cs -------------------------------------------------------------------------------- /ME7correction/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/frmMain.cs -------------------------------------------------------------------------------- /ME7correction/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/ME7correction/frmMain.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/README.md -------------------------------------------------------------------------------- /me7utilities/ME7Check.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/me7utilities/ME7Check.exe -------------------------------------------------------------------------------- /me7utilities/me7sum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephendpmurphy/ME7.X_Correction/HEAD/me7utilities/me7sum.exe --------------------------------------------------------------------------------