Version 1.0.0.1, Bugfixing

This commit is contained in:
BlubbFish 2013-08-01 12:01:23 +00:00
parent 98b5efba0a
commit 9ac343fc45
3 changed files with 7 additions and 3 deletions

View File

@ -32,7 +32,11 @@ namespace Matomat.Configuration
this.debug = (bool)config.GetValue("debug", typeof(bool));
this.sell = (bool)config.GetValue("sell", typeof(bool));
}
catch (Exception) { }
catch (Exception) {
Console.WriteLine("FATAL ERROR: Konnte die Configdatei nicht lesen!");
Console.ReadLine();
Environment.Exit(1);
}
}
internal static Config getInstance(string file)

View File

@ -33,6 +33,6 @@ using System.Resources;
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
[assembly: NeutralResourcesLanguageAttribute("de-DE")]

Binary file not shown.