We have a task to automate the process of Build and deployments using Final Builder. We have created a .net application which calls Final Builder Project through Batch file.
Could you please tell me is it possible to schedule a Final builder deployment using .net application.
I am aware of scheduling the deployment in Final Builder itself but we want it through .net application.
Just to confirm the aim here. Your asking if there is a way to schedule running a .Net application, or the call of a batch file from within a .Net application? These end up calling a FinalBuilder script to be executed. Is that correct?
If so then there are a number of ways to achieve this. The quickest of which would be to register your .Net application with the Windows Scheduler, or to have the .Net application create an entry for running the batch file in the scheduler. The link below talks about how to create a windows scheduler task.
If you want something more involved then a service might work. This link talks about that option and others, and links frameworks to help perform scheduling within your own code.