Using Version 2
It's probably just me (it usually is), but I can't get .lpt templates to process properly. It appears that the text from the .lpt file is being inserted in the C# file. For example, if debugBuild is true, the template code
a few lines
to see what we get
produces
using SD.LLBLGen.Pro.GeneratorCore;
...
using System.IO;
a few lines
to see what we get
public class DataPortalTemplate : ITemplateClass {
...
private void __ScriptCode() {
__outputWriter.Write("a few lines\nto see what we get \n");
}
...
}
which causes the compiler some grief. I have not had similar problems with Version 1.
Any help gratefully accepted
Kevin McKeogh