Skip to content

Commit 9c0f4e5

Browse files
[TASKSCLOUD-606] - Deployed new 21.10 version.
1 parent 0ab5f44 commit 9c0f4e5

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Aspose.Tasks.Cloud.Sdk/Aspose.Tasks.Cloud.Sdk.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>Aspose.Tasks-Cloud</id>
5-
<version>21.8</version>
5+
<version>21.10</version>
66
<title>Aspose.Tasks Cloud SDK for .NET</title>
77
<summary>Aspose.Tasks Cloud SDK allows developer to manipulate or convert Microsoft Project documents hosted on a cloud platform from .NET applications</summary>
88
<authors>Aspose</authors>
@@ -14,7 +14,7 @@
1414
<description>New generation of Aspose Cloud SDK that allows to manipulate or convert Microsoft Project documents hosted on a cloud platform from .NET applications. It allows you to work with all aspects of a Project document including conversion. The API offers a wide range of Microsoft Project export options. The Aspose.Tasks Cloud API allows developers to convert Project documents to various formats including XML, HTML, BMP, PNG, PDF, and XSLX.
1515
</description>
1616
<releaseNotes>
17-
The complete list of changes can be found at https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-docs/blob/master/tasks/release-notes/release-notes-2021/aspose-tasks-cloud-21-8-release-notes/_index.md
17+
The complete list of changes can be found at https://docs.aspose.cloud/tasks/aspose-tasks-cloud-21-10-release-notes/
1818
</releaseNotes>
1919
<copyright>Aspose 2002-2021. All Rights Reserved.</copyright>
2020
<tags>MPP Primavera Microsoft Project Server Online P6XML PrimaveraXML XER MPX</tags>

Aspose.Tasks.Cloud.Sdk/Model/ExtendedAttribute.cs

+6
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ public class ExtendedAttribute
8585
/// </summary>
8686
public string TextValue { get; set; }
8787

88+
/// <summary>
89+
/// Gets whether calculation of extended attribute's value resulted in an error.
90+
/// </summary>
91+
public bool IsErrorValue { get; set; }
92+
8893
/// <summary>
8994
/// Get the string presentation of the object
9095
/// </summary>
@@ -102,6 +107,7 @@ public override string ToString()
102107
sb.Append(" DateValue: ").Append(this.DateValue).Append("\n");
103108
sb.Append(" FlagValue: ").Append(this.FlagValue).Append("\n");
104109
sb.Append(" TextValue: ").Append(this.TextValue).Append("\n");
110+
sb.Append(" IsErrorValue: ").Append(this.IsErrorValue).Append("\n");
105111
sb.Append("}\n");
106112
return sb.ToString();
107113
}

Aspose.Tasks.Cloud.Sdk/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@
5353
// Minor Version
5454
// Build Number
5555
// Revision
56-
[assembly: AssemblyVersion("21.8.0.0")]
57-
[assembly: AssemblyFileVersion("21.8.0.0")]
56+
[assembly: AssemblyVersion("21.10.0.0")]
57+
[assembly: AssemblyFileVersion("21.10.0.0")]

0 commit comments

Comments
 (0)