Hi!
Just installed Aspose.Tasks (latest release).
Have successfully reference license.
Can open an existing MS Project and save it to a new name (*.mpp) file okay… However, Visual Studio shows errors when I try to edit properties of a Resource (for example)
Resource rez = prj.Resources.Add(description); //succeeds
…
rez.Name = “Engineer”; //will not compile, VS says “Name” is not legit (or ID, UID, etc.).
Any help?
I have restarted VS2013.
Below is front matter of class (using, license check).
Thanks,
Doug
…
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Aspose.Tasks;
using Aspose.Tasks.Util;
using HydraData;
using System.IO;
namespace HydraProjectInterface
{
public class HydraAsposeTaskInterface
{
private static bool _AsposeTotalInitialized = false;
public delegate void AsposeIntegrationProgress(string msg, int progress);
public HydraAsposeTaskInterface(AsposeIntegrationProgress progress)
{
_Progress = progress;
if (!_AsposeTotalInitialized)
{
License l = new License();
string d = Directory.GetCurrentDirectory();
l.SetLicense(“Aspose.Total.lic”);
_AsposeTotalInitialized = true;
}
}
…