AutoCodeGenControllerStartCycle Method |
Starts a code generation cycle unattended, running on a background task.
Namespace:
SD.LLBLGen.Pro.ApplicationCore.Automation
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.8.0.0 (5.8.21.0208)
Syntax public static void StartCycle(
Dictionary<ProgressCallBack, Object> progressCallbacks,
Action<List<string>> postProcessCallback
)
Public Shared Sub StartCycle (
progressCallbacks As Dictionary(Of ProgressCallBack, Object),
postProcessCallback As Action(Of List(Of String))
)
Parameters
- progressCallbacks
- Type: System.Collections.GenericDictionaryProgressCallBack, Object
The progress callbacks to use for giving feedback to callers what's happening - postProcessCallback
- Type: SystemActionListString
The callback to call after the whole process has been completed. The callback receives the list of vs proj filenames touched during the
code gen process
See Also