Other app features
#
GetAppIt is possible to get a reference to a running application instance and setup dependencies between apps. The use-case for this is to have applications that share state and functionality you want to share to other apps.
app.cs
app.yaml
#
RunScriptTo run scripts use the RunScript
command.
#
DelaySomtimes you just wanna delay a period of time between two different actions. Do not use Thread.Sleep()
. Use the built-in Delay(TimeSpan timeout)
function. It uses async in the background to do proper exit when app exit.
#
ServiceProvider AccessSometimes you want to use the IServiceProvider to instance your dependencies. Application expose the ServiceProvider
property to use for this purpose. This is very useful testing the application.