- restructured source and added build configuration to build all non-UI projects without the need for a DevExpress license

This commit is contained in:
Horst Beham
2021-07-24 18:59:03 +02:00
parent 22f9d43adc
commit 6c94e62eca
43 changed files with 1039 additions and 482 deletions

View File

@@ -21,7 +21,9 @@ namespace ChanSort.Loader.LG
if (content.Contains("<TLLDATA>"))
return new GlobalClone.GcXmlSerializer(inputFile);
return new Binary.TllFileSerializer(inputFile);
return new Binary.TllFileSerializer(inputFile) { IsTesting = this.IsTesting };
}
internal bool IsTesting { get; set; }
}
}