Skip to content

Commit

Permalink
[TASKSCLOUD-644] - Deployed new 22.7 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanAndreychikov committed Aug 3, 2022
1 parent 525561c commit 6013900
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Aspose.Tasks.Cloud.Sdk.Tests</RootNamespace>
<AssemblyName>Aspose.Tasks.Cloud.Sdk.Tests</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
Expand Down
1 change: 1 addition & 0 deletions Aspose.Tasks.Cloud.Sdk.sln
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Global
{11CDA7D7-4E13-4946-BDC7-7178115F35DD}.Release|x86.Build.0 = Release|x86
{11CDA7D7-4E13-4946-BDC7-7178115F35DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{11CDA7D7-4E13-4946-BDC7-7178115F35DD}.Release|Any CPU.Build.0 = Release|Any CPU
{11CDA7D7-4E13-4946-BDC7-7178115F35DD}.Debug|Any CPU.Build.0 = Debug|x86
{FCFE1F60-DB73-4F3F-853A-FBADCC5E994B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FCFE1F60-DB73-4F3F-853A-FBADCC5E994B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FCFE1F60-DB73-4F3F-853A-FBADCC5E994B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
Expand Down
3 changes: 2 additions & 1 deletion Aspose.Tasks.Cloud.Sdk/Aspose.Tasks.Cloud.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<OutputType>Library</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>Aspose.Tasks.Cloud.Sdk</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
Expand Down Expand Up @@ -263,6 +263,7 @@
<Compile Include="Model\ResourceResponse.cs" />
<Compile Include="Model\ResourceType.cs" />
<Compile Include="Model\RollupType.cs" />
<Compile Include="Model\SummaryRowsCalculationType.cs" />
<Compile Include="Model\Task.cs" />
<Compile Include="Model\TaskBaseline.cs" />
<Compile Include="Model\TaskCreationRequest.cs" />
Expand Down
4 changes: 2 additions & 2 deletions Aspose.Tasks.Cloud.Sdk/Aspose.Tasks.Cloud.Sdk.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>Aspose.Tasks-Cloud</id>
<version>21.10</version>
<version>22.7</version>
<title>Aspose.Tasks Cloud SDK for .NET</title>
<summary>Aspose.Tasks Cloud SDK allows developer to manipulate or convert Microsoft Project documents hosted on a cloud platform from .NET applications</summary>
<authors>Aspose</authors>
Expand All @@ -14,7 +14,7 @@
<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.
</description>
<releaseNotes>
The complete list of changes can be found at https://docs.aspose.cloud/tasks/aspose-tasks-cloud-21-10-release-notes/
The complete list of changes can be found at https://docs.aspose.cloud/tasks/aspose-tasks-cloud-22-7-release-notes/
</releaseNotes>
<copyright>Aspose 2002-2021. All Rights Reserved.</copyright>
<tags>MPP Primavera Microsoft Project Server Online P6XML PrimaveraXML XER MPX</tags>
Expand Down
8 changes: 8 additions & 0 deletions Aspose.Tasks.Cloud.Sdk/Model/ExtendedAttributeDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@ public class ExtendedAttributeDefinition
public CalculationType CalculationType { get; set; }


/// <summary>
/// Gets or sets the type of calculation of the custom attribute's value for summary rows.
/// </summary>
[JsonProperty("SummaryRowsCalculationType", NullValueHandling = NullValueHandling.Ignore)]
public SummaryRowsCalculationType SummaryRowsCalculationType { get; set; }


/// <summary>
/// The formula that Microsoft Project uses to populate a custom task field.
/// </summary>
Expand Down Expand Up @@ -178,6 +185,7 @@ public override string ToString()
sb.Append(" LookupUid: ").Append(this.LookupUid).Append("\n");
sb.Append(" PhoneticsAlias: ").Append(this.PhoneticsAlias).Append("\n");
sb.Append(" RollupType: ").Append(this.RollupType).Append("\n");
sb.Append(" SummaryRowsCalculationType: ").Append(this.SummaryRowsCalculationType).Append("\n");
sb.Append(" CalculationType: ").Append(this.CalculationType).Append("\n");
sb.Append(" Formula: ").Append(this.Formula).Append("\n");
sb.Append(" RestrictValues: ").Append(this.RestrictValues).Append("\n");
Expand Down
7 changes: 7 additions & 0 deletions Aspose.Tasks.Cloud.Sdk/Model/Resource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ public class Resource
[JsonProperty("Type", NullValueHandling = NullValueHandling.Ignore)]
public ResourceType Type { get; set; }

/// <summary>
/// Gets the flag indicating whether resource is a root resource. Root resource is
/// a special resource which is intended to support internals of MS Project's formats
/// and is not intended to be used directly from the user's code.
/// </summary>
public bool? IsRoot { get; set; }

/// <summary>
/// Determines whether a resource is null.
Expand Down Expand Up @@ -443,6 +449,7 @@ public override string ToString()
sb.Append(" Id: ").Append(this.Id).Append("\n");
sb.Append(" Guid: ").Append(this.Guid).Append("\n");
sb.Append(" Type: ").Append(this.Type).Append("\n");
sb.Append(" IsRoot: ").Append(this.IsRoot).Append("\n");
sb.Append(" IsNull: ").Append(this.IsNull).Append("\n");
sb.Append(" Initials: ").Append(this.Initials).Append("\n");
sb.Append(" Phonetics: ").Append(this.Phonetics).Append("\n");
Expand Down
41 changes: 41 additions & 0 deletions Aspose.Tasks.Cloud.Sdk/Model/SummaryRowsCalculationType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright company="Aspose" file="CalculationType.cs">
// Copyright (c) 2022 Aspose.Tasks for Cloud
// </copyright>
// <summary>
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace Aspose.Tasks.Cloud.Sdk.Model
{
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

/// <summary>
/// Specifies the type of a calculation of the custom attribute's value for summary rows.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum SummaryRowsCalculationType
{
None,
Rollup,
UseFormula,
}
}
4 changes: 2 additions & 2 deletions Aspose.Tasks.Cloud.Sdk/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("21.10.0.0")]
[assembly: AssemblyFileVersion("21.10.0.0")]
[assembly: AssemblyVersion("22.7.0.0")]
[assembly: AssemblyFileVersion("22.7.0.0")]

0 comments on commit 6013900

Please sign in to comment.