These changes are required for Windows and Windows Mobile applications.
In 2.1 ESD#3, there are two new required libraries for Windows clients.
Rebuild your project to include additional references to the new libraries:
See Developer Guide: Windows and Windows Mobile Object API Applications for information on developing your application.
Update and rebuild your application:
For information on the Application interface, search for Application APIs in the Developer Guide for your platform.
For information on the ApplicationCallback interface, search for Callback and Listener APIs in the Developer Guide for your platform.
public int OnSynchronize(GenericList<ISynchronizationGroup> groups, SynchronizationContext context) { int status = context.Status; if (status == SynchronizationStatus.STARTING_ON_NOTIFICATION) { // There is changes on the synchronization group if (busy) { return SynchronizationAction.CANCEL; } else { return SynchronizationAction.CONTINUE; } } // return CONTINUE for all other status return SynchronizationAction.CONTINUE; }
Rebuild your project as follows: