- 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

@@ -47,7 +47,7 @@ namespace Test.Loader.LG.Binary
public void TestDeletingChannel()
{
var tempFile = TestUtils.DeploymentItem("Test.Loader.LG\\Binary\\LM\\xxLM620s-ZE00001.TLL.in");
var plugin = new LgPlugin();
var plugin = new LgPlugin() { IsTesting = true };
var ser = plugin.CreateSerializer(tempFile);
ser.Load();
var data = ser.DataRoot;
@@ -93,7 +93,7 @@ namespace Test.Loader.LG.Binary
var tllFile = inFile.Replace(".in", ".tll");
File.Delete(tllFile);
File.Move(inFile, tllFile);
RoundtripTest.TestChannelAndFavListEditing(tllFile, new LgPlugin());
RoundtripTest.TestChannelAndFavListEditing(tllFile, new LgPlugin() {IsTesting = true});
}
#endregion