Hi
I'm attempting to change various project settings via the API, which does work for local projects. When a project has been published to GroupShare however, other users do not see the changes. I've tried changing the project description and duedate and also multiple values in the project settings group/bundle. None of these are synchronised by the API.
Changing any value on the project settings GUI (e.g. Due Date) will also synchronise my API changes. Is there any way force the API to sync with GroupShare? I've tried a few combinations of the following in my plugin:
var pi = currentPrj.GetProjectInfo(); if (pi.PublicationStatus == PublicationStatus.Published) { if (pi.DueDate == null) pi.DueDate = DateTime.Now.AddDays(7.0); currentPrj.UpdateProject(pi); currentPrj.Save(); currentPrj.SynchronizeServerProjectData(); } }
Thanks
Alan