Hello,
It would be good to be able have a custom action in .NET in which the object is a generic one.
I have one main object that interacts with FinalBuilder, the virtual Execute() method on this class is called when invoked from FinalBuilder.
public abstract class FBAction : StandardAction { .... }
It would be good to be able to make this class generic:
public abstract class FBAction : StandardAction { ... }
This way, in FinalBuilder i will be able to simply define new .NET Actions like:
Namespace.Classname:
MyCode.FBAction
This will auto-create the underlying "worker" object as DatabaseAccessor, running the needed action.