I am trying to find the schedule variance of all the projects in my Microsoft Project Server. I am using CSOM and C# to access the server, and I do get some details of the projects.
The schedule variation would require Actual Start/ End, Baseline Start/End dates. When I included the start and end date in project query to load to the project context like :
projContext.Load(pubProj, d=> d.StartDate, d=>d.FinishDate, d=>d.Name,
d=>d.CustomFields, d=>d.Description, d=>d.Id,d=>d.Owner,
d=>d.PercentComplete, d=>d.LastPublishedDate, d=>d.ApprovedEnd,
d=>d.ApprovedStart);
I do see that the start and end dates are populating, but the start date varies from what I see in the Project Information on the UI. Also I could not figure out how to get the baseline dates which we would see in the Tracking view of projects.
Please can someone help me here ?