Skip to content

Commit 20eb519

Browse files
committed
Release Aspose.Cells Cloud SDK 24.5.0
1 parent 758faab commit 20eb519

File tree

582 files changed

+1069
-1277
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

582 files changed

+1069
-1277
lines changed

Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>Net6</TargetFrameworks>
4+
<TargetFrameworks>Net6;Net452;netstandard2.0</TargetFrameworks>
55
<AssemblyName>Aspose.Cells.Cloud.SDK</AssemblyName>
66
<PackageId>Aspose.Cells-Cloud</PackageId>
77
<OutputType>Library</OutputType>
@@ -10,16 +10,16 @@
1010
<PackageProjectUrl>https://products.aspose.cloud/cells/family</PackageProjectUrl>
1111
<Company>Aspose</Company>
1212
<AssemblyTitle>Aspose.Cells Cloud SDK for .NET</AssemblyTitle>
13-
<Description>New generation of Aspose.Cells Cloud SDK for .NET, written in C#, enables the creation, editing, and conversion of Excel (XLS, XLSX, XLSB), ODS, CSV, JSON, and HTML files through easy interaction with the Aspose.Cells Cloud REST API.</Description>
13+
<Description>A powerful and fast Aspose.Cells cloud SDK library written in C# for manipulating and converting Excel(XLS, XLSX,XLSB), ODS, CSV,JSON and HTML files.</Description>
1414
<PackageReleaseNotes>https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/releases/tag/23.10</PackageReleaseNotes>
15-
<PackageTags>Cloud REST API Excel XLS XLSX XLSB CSV-to-PDF JPG PNG HTML ODS Numbers XLSM OOXML Spreadsheet Markdown XPS DOCX PPTX MHTML JSON SVG TIFF</PackageTags>
15+
<PackageTags>Cloud REST API Excel XLS XLSX XLSB CSV to PDF JPG PNG HTML ODS Numbers XLSM OOXML Spreadsheet Markdown XPS DOCX PPTX MHTML JSON SVG TIFF</PackageTags>
1616
<RepositoryURL>https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/</RepositoryURL>
1717
<RepositoryType>GitHub</RepositoryType>
1818
<Copyright>MIT</Copyright>
19-
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
20-
<AssemblyVersion>24.4</AssemblyVersion>
21-
<FileVersion>24.4</FileVersion>
22-
<Version>24.4</Version>
19+
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
20+
<AssemblyVersion>24.5</AssemblyVersion>
21+
<FileVersion>24.5</FileVersion>
22+
<Version>24.5</Version>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
2424

2525
</PropertyGroup>

Aspose.Cells.Cloud.SDK/Infrastructure/Invoker/ApiInvoker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ internal class ApiInvoker
5050
internal ApiInvoker(List<IRequestHandler> requestHandlers)
5151
{
5252
this.AddDefaultHeader(AsposeClientHeaderName, ".net sdk");
53-
this.AddDefaultHeader(AsposeClientVersionHeaderName, "24.4");
53+
this.AddDefaultHeader(AsposeClientVersionHeaderName, "24.5");
5454
this.requestHandlers = requestHandlers;
5555
}
5656

Aspose.Cells.Cloud.SDK/Infrastructure/Invoker/JwtTokenRequestHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public void ProcessResponse(HttpWebResponse response, Stream resultStream)
7878

7979
private void RequestToken()
8080
{
81-
var requestUrl = baseApiUrl + "/connect/token";
81+
var requestUrl ="https://id.aspose.cloud/connect/token";
8282

8383
var postData = "grant_type=client_credentials";
8484
postData += "&client_id=" + clientId;

Aspose.Cells.Cloud.SDK/Model/AnalyzeExcelResponse.cs

Lines changed: 0 additions & 60 deletions
This file was deleted.

Aspose.Cells.Cloud.SDK/Model/AnalyzedColumnDescription.cs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
/// How to use the properties of each column: currently divided into timeline, product line, numerical statistics line
39-
/// How to present the product, a unified plan
40-
/// How to solve the problem of full digital?
41-
/// Full text How to solve it?
42-
/// Two columns: Text, Number is the easiest
43-
/// Three columns: Text, Text, Number
44-
/// text, number, number --- date date ; Date Numeric ; Numeric Digital
45-
/// What about four columns, five columns?
38+
/// Represents description of analyzed column.
4639
/// </summary>
4740
public class AnalyzedColumnDescription
4841
{

Aspose.Cells.Cloud.SDK/Model/AnalyzedResult.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,27 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
///
38+
/// Represents results of analyzed data.
3939
/// </summary>
4040
public class AnalyzedResult
4141
{
4242
/// <summary>
43-
///
43+
/// Represents the file name of data file.
4444
/// </summary>
4545
public virtual string Filename { get; set; }
4646

4747
/// <summary>
48-
///
48+
/// Represents summary about results of analyzed data.
4949
/// </summary>
5050
public virtual string Description { get; set; }
5151

5252
/// <summary>
53-
///
53+
/// Represents Excel data statistics.
5454
/// </summary>
5555
public virtual ExcelDataStatistics BasicStatistics { get; set; }
5656

5757
/// <summary>
58-
///
58+
/// Represents analyzed table description.
5959
/// </summary>
6060
public virtual IList<AnalyzedTableDescription> Results { get; set; }
6161

Aspose.Cells.Cloud.SDK/Model/AnalyzedTableDescription.cs

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -35,87 +35,87 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
///
38+
/// Represents analyzed table description.
3939
/// </summary>
4040
public class AnalyzedTableDescription
4141
{
4242
/// <summary>
43-
///
43+
/// Represents table name.
4444
/// </summary>
4545
public virtual string Name { get; set; }
4646

4747
/// <summary>
48-
///
48+
/// Represents worksheet name which is where the table is located.
4949
/// </summary>
5050
public virtual string SheetName { get; set; }
5151

5252
/// <summary>
53-
///
53+
/// Represents analyzed description about table columns.
5454
/// </summary>
5555
public virtual IList<AnalyzedColumnDescription> Columns { get; set; }
5656

5757
/// <summary>
58-
///
58+
/// Represents date columns list.
5959
/// </summary>
6060
public virtual IList<int?> DateColumns { get; set; }
6161

6262
/// <summary>
63-
///
63+
/// Represents number columns list.
6464
/// </summary>
6565
public virtual IList<int?> NumberColumns { get; set; }
6666

6767
/// <summary>
68-
///
68+
/// Represents string columns list.
6969
/// </summary>
7070
public virtual IList<int?> TextColumns { get; set; }
7171

7272
/// <summary>
73-
///
73+
/// Represents exception columns list.
7474
/// </summary>
7575
public virtual IList<int?> ExceptionColumns { get; set; }
7676

7777
/// <summary>
78-
///
78+
/// Represents there is a table header in the table.
7979
/// </summary>
8080
public virtual bool? HasTableHeaderRow { get; set; }
8181

8282
/// <summary>
83-
///
83+
/// Represents there is a total row in the table.
8484
/// </summary>
8585
public virtual bool? HasTableTotalRow { get; set; }
8686

8787
/// <summary>
88-
///
88+
/// Represents the column index as the start data column.
8989
/// </summary>
9090
public virtual int? StartDataColumnIndex { get; set; }
9191

9292
/// <summary>
93-
///
93+
/// Represents the column index as the end data column.
9494
/// </summary>
9595
public virtual int? EndDataColumnIndex { get; set; }
9696

9797
/// <summary>
98-
///
98+
/// Represents the row index as the start data row.
9999
/// </summary>
100100
public virtual int? StartDataRowIndex { get; set; }
101101

102102
/// <summary>
103-
///
103+
/// Represents the row index as the end data row.
104104
/// </summary>
105105
public virtual int? EndDataRowIndex { get; set; }
106106

107107
/// <summary>
108-
/// Base64String
108+
/// Represents table thumbnail. Base64String
109109
/// </summary>
110110
public virtual string Thumbnail { get; set; }
111111

112112
/// <summary>
113-
///
113+
/// Represents a collection of charts, which is a collection of charts created based on data analysis of a table.
114114
/// </summary>
115115
public virtual IList<DiscoverChart> DiscoverCharts { get; set; }
116116

117117
/// <summary>
118-
///
118+
/// Represents a collection of pivot tables, which is a collection of pivot tables created based on data analysis of a table.
119119
/// </summary>
120120
public virtual IList<DiscoverPivotTable> DiscoverPivotTables { get; set; }
121121

Aspose.Cells.Cloud.SDK/Model/ArcShape.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
///
38+
/// Represents the arc shape.
3939
/// </summary>
4040
public class ArcShape : Shape
4141
{

Aspose.Cells.Cloud.SDK/Model/ArcShapeResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
///
38+
/// Represents the ArcShape Response.
3939
/// </summary>
4040
public class ArcShapeResponse : CellsCloudResponse
4141
{

Aspose.Cells.Cloud.SDK/Model/Area.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
///
38+
/// Encapsulates the object that represents an area format.
39+
///
3940
/// </summary>
4041
public class Area
4142
{

0 commit comments

Comments
 (0)