I'm trying to add a custom template without Template Studio.
So, I've
1. created a template file (Templates\SharedTemplates\Net2.x\C#\zzz.template) and a templatebindings file (Templates\zzz.templatebindings)
2. updated a preset task I'm using for generating the code: appended it with my task call
...
<taskGroupPreset name="Zzz.Tasks.Adapter.FileCreators">
<taskPreset name="Zzz.Tasks.Adapter.LLBLGenGenerator">
<parameters>
<parameter name="destinationFolder" value="[dbspecificSubFolder]" />
<parameter name="templateID" value="zzzTemplate" />
</parameters>
</taskPreset>
</taskGroupPreset>
- created a Zzz.Tasks.Adapter.tasks file in Tasks folder (the mentioned preset file sits there) and put the task there.
I was assuming it was everything I needed but my file isn't generated.
On the other hand, I was able to generate it by updating the default templatebindings, but I'd better off not modifying shipped files.
So, what am I missing?