Xamarin binding for the LetsMove library
Move a running Mac OS X application to the Applications folder. Does NOT support sandboxed applications.
[Register("AppDelegate")]
public class AppDelegate : NSApplicationDelegate
{
public AppDelegate()
{
}
public override void DidFinishLaunching(NSNotification notification)
{
LetsMove.CFunctions.PFMoveToApplicationsFolderIfNecessary();
}
public override void WillTerminate(NSNotification notification)
{
}
}