Aspose.Tasks does not support External link : CrossProjectName

Hi,


I see that Aspose.Tasks does not support for external links for CrossProject. I found that when Aspose parse with such those external links, Aspose will ignore this kind of link, and TaskLinks will return a list of internal links. Do you have a plan for support this ?

Regards,
Thanh

Hi Thanh,

I can see links to external tasks in the TaskLinks collection. Please check the attached sample to test the external task links.

You can use the following code to track external task’s information or external project’s name.

foreach (TaskLink link in main.TaskLinks)
{
    if (link.PredTask.IsExternalTask)
    {
        string externalProjectName = link.PredTask.ExternalTaskProject;
        string externalTaskName = link.PredTask.Name;
    }
}

Please feel free to contact us in case you have further comments or questions.

Best Regards,

Thank for your reply,


The problem here is that TaskLinks collection just return internal links not including external links, so the if statement above is never true, so we cannot do more with external tasks. Do you have a plan to support for external links also ?

Hope this helps !
Thanh

Hi Thanh,


Thank you a lot for your question!

There are two ways to link your project to another: some external dependencies can be added or entire subproject can be inserted in your project.

Please see a screen shot and a test data attached for the second case.
In case you still have the problem please provide us with the project data (all private information could be deleted or changed).

The issues you have found earlier (filed as 23695) have been fixed in this update.


This message was posted using Notification2Forum from Downloads module by aspose.notifier.

The issues you have found earlier (filed as ) have been fixed in this Aspose.Words for JasperReports 18.3 update.