Hola, este es un muy breve resumen de las novedades que nos trae Project Server 2016:
Lo que quedó obsoleto
Pueden encontrar el detalle en: https://technet.microsoft.com/en-us/library/mt422816(v=office.16).aspx
- Planes de recurso
- Mis tareas (sincronización con Exchange incluida)
- PSI. Para nuevos desarrollos usar Project cliente Side Object Model. Tenemos adaptaciones para C#, Silverlight, Windows Phone, JavaScript y Rest.
Transcribo un ejemplo de CSOM en C# desde https://msdn.microsoft.com/library/office/microsoft.projectserver.client_di_pj14mref.aspx que nos ayudará a entender esta API:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.ProjectServer.Client; namespace ReadProjectList { class Program { private const string pwaPath = "http://ServerName/PwaName/"; // Change the path for Project Web App. // Set the context for the Project Server CSOM. private static ProjectContext projContext; static void Main(string[] args) { projContext = new ProjectContext(pwaPath); // Get the list of published projects in Project Web App. projContext.Load(projContext.Projects); projContext.ExecuteQuery(); Console.WriteLine("\nProject ID : Project name : Created date"); foreach (PublishedProject pubProj in projContext.Projects) { Console.WriteLine("\n\t{0}\n\t{1} : {2}", pubProj.Id.ToString(), pubProj.Name, pubProj.CreatedDate.ToString()); } Console.Write("\nPress any key to exit: "); Console.ReadKey(false); } } }
Lo nuevo en Project 2016 Cliente
Esto lo pueden consultar en https://blogs.office.com/2015/09/30/whats-new-in-project-2016/
Lo nuevo en Project 2016 Server
Pueden consultar en https://technet.microsoft.com/en-us/library/ff631142(v=office.16).aspx
A continuación un breve resumen:
- Compromiso de recursos (novedad también deProject Client 2016)
- Instalación unificada con SharePoint. Ahora Project Server es un servicio. Requiere la versión enterprise de SharePoint
- De alguna forma se unifican con SharePoint los requerimientos de hardware
- Compatibilidad con Cliente 2013 y 2016
- Ya no se requieren múltiples bases de datos cuando tenemos varias instancias de Project Server
- Límites en campos personalizados (450)
- Varios cambios en la vista de línea de tiempo, por ejemplo la posibilidad de tener varias
Pueden encontrar más información sobre Project Server en https://products.office.com/es/project/enterprise-project-server