Version 1.0.0.1, Bugfixing
This commit is contained in:
parent
98b5efba0a
commit
9ac343fc45
@ -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)
|
||||
|
@ -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.
Loading…
Reference in New Issue
Block a user