Afternoon gents/ladies,
Sorry, I'm not sure if this is the right forum for this question, but here it goes anyway:
We have a custom task performer that generates a directory and .cs file under our LLBLGen generated code project. How can I add that directory/file to the csproj?
I've attached the essentials of the code below:
<task name="DoCode" assemblyFilename="DoCode.dll" taskPerformerClass="DoCode.Performer">
</task>
public class Performer : TaskPerformerBase
{
public override void Perform(IGenerator executingGenerator,
ITask taskDefinition, Hashtable parameters)
{
// create folder + cs file
// TODO: ??? add file to csproj ???
}
}
Any help will be much appreciated!
FS