Mit diesem Snippet kann ein MS Project 2007 Profil angelegt werden.
folgende using muss dazu eingebunden werden:
using Microsoft.Office.Interop.MSProject;
private void createProjectServerProfile()
{
ApplicationClass projectApplication = new ApplicationClass();
projectApplication.Profiles.Add("ProfileName", "ProjectServerURL", PjLoginType.pjWindowsLogin, "UserName");
}
Kommentare zum Snippet