This commit is contained in:
Simon Martens
2022-01-20 18:02:47 +01:00
parent e13439d928
commit bf889b0bb0
9 changed files with 29542 additions and 1146 deletions

View File

@@ -66,6 +66,7 @@ namespace HamannPrinter
public static StringBuilder LogString = new StringBuilder();
public static void Out(string str)
{
Console.WriteLine(str);
LogString.Append(str).Append(Environment.NewLine);
}
@@ -77,7 +78,7 @@ namespace HamannPrinter
DocOptions docOpt = new DocOptions(confix.Years, confix.OutputPath, confix.Editionsrichtlinien);
CheckXML(confix, docOpt, hamannDoc);
Coordinator(docOpt, hamannDoc, hamannDoc, docOpt.Years, confix.LettersDocx, confix.VolumeDocx, confix.RegisterDocx);
Helper.Ok("Fertig!");
// DEV Helper.Ok("Fertig!");
Environment.Exit(0);
}