Skip to content

Commit a5f0f40

Browse files
committed
Release Aspose.Cells.Cloud SDK 20.2
1 parent 47cec69 commit a5f0f40

File tree

7 files changed

+303
-41
lines changed

7 files changed

+303
-41
lines changed

Aspose.Cells-Cloud.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>Aspose.Cells-Cloud</id>
5-
<version>20.1</version>
5+
<version>20.2</version>
66
<title>Aspose.Cells Cloud SDK for .NET</title>
77
<authors>Aspose</authors>
88
<owners>asposecloud</owners>
9-
<iconUrl>http://www.aspose.com/Images/aspose_cells_for_cloud_140px.png</iconUrl>
9+
<iconUrl>https://www.aspose.cloud/templates/asposecloud/App_Themes/V3/images/sdk/272x272/aspose_cells-for-net.png</iconUrl>
1010
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
1111
<projectUrl>https://products.aspose.cloud/cells/family</projectUrl>
1212
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1313
<summary>Aspose.Cells Cloud SDK for .NET.</summary>
1414
<description>Aspose.Cells Cloud SDK for .NET is a spreadsheet programming SDK that allows software developers to manipulate and convert spreadsheet files from within their own applications. A Wrapper of RESTfull APIs, Aspose.Cells Cloud for .NET speeds up Microsoft Excel programming and conversion.</description>
15-
<releaseNotes>https://wiki.nanjing.dynabic.com/bin/view/Support/Home/Releases/Release%20Notes/Aspose.Cells/Aspose.Cells%20Cloud%20SDK%20Release%20Notes/Aspose.Cells%20Cloud%20SDK%2020.1%20-%20%20January%202020/</releaseNotes>
15+
<releaseNotes>https://docs.aspose.cloud/display/cellscloud/Aspose.Cells+Cloud+20.2+Release+Notes</releaseNotes>
1616
<copyright>Aspose 2002-2020. All Rights Reserved.</copyright>
1717
<tags>Excel Spreadsheet Aspose.Cells XLS XLSX TXT ODS</tags>
1818
<dependencies>

Aspose.Cells.Cloud.SDK.Test/Api/CellsBaseTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public class CellsBaseTest
1313
protected ApiClient client;
1414
protected Client.Configuration config;
1515
protected string grantType = "client_credentials";
16-
protected string clientId = "66164C51-693E-4904-A121-545961673EC1";
17-
protected string clientSecret = "536e76768419db9585afdd37bb5f7533";
16+
protected string clientId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
17+
protected string clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
1818
protected static string accesstoken;
1919
protected string refreshtoken;
2020
protected string BOOK1 = "Book1.xlsx";

Aspose.Cells.Cloud.SDK.Test/Api/OAuthApiTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ public void OAuthPostTest()
6060
{
6161
// TODO uncomment below to test the method and replace null with proper value
6262
string grantType = "client_credentials";
63-
string clientId = "66164C51-693E-4904-A121-545961673EC1";
64-
string clientSecret = "536e76768419db9585afdd37bb5f7533";
63+
string clientId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
64+
string clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
6565
var response = instance.OAuthPost(grantType, clientId, clientSecret);
6666
Assert.IsInstanceOf<AccessTokenResponse>(response, "response is AccessTokenResponse");
6767
Assert.IsNotNull(response.AccessToken);

Aspose.Cells.Cloud.SDK/Api/CellsApi.cs

Lines changed: 291 additions & 16 deletions
Large diffs are not rendered by default.

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

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

Aspose.Cells.Cloud.SDK/Client/Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public Configuration(ApiClient apiClient = null,
5959
string tempFolderPath = null,
6060
string dateTimeFormat = null,
6161
int timeout = 100000,
62-
string userAgent = "Swagger-Codegen/20.1/csharp"
62+
string userAgent = "Swagger-Codegen/20.2/csharp"
6363
)
6464
{
6565
setApiClientUsingDefault(apiClient);
@@ -94,7 +94,7 @@ public Configuration(ApiClient apiClient)
9494
/// Version of the package.
9595
/// </summary>
9696
/// <value>Version of the package.</value>
97-
public const string Version = "20.1";
97+
public const string Version = "20.2";
9898

9999
/// <summary>
100100
/// Gets or sets the default Configuration.
@@ -338,7 +338,7 @@ public static String ToDebugReport()
338338
.GetExecutingAssembly()
339339
.GetReferencedAssemblies()
340340
.Where(x => x.Name == "System.Core").First().Version.ToString() + "\n";
341-
report += " SDK Package Version: 20.1\n";
341+
report += " SDK Package Version: 20.2\n";
342342

343343
return report;
344344
}

Examples/Config.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ public class Config
1818
protected static Configuration config;
1919
protected static OAuthApi oauth2 = null;
2020
protected static string grantType = "client_credentials";
21-
protected static string clientId = "78946fb4-3bd4-4d3e-b309-f9e2ff9ac6f9";
22-
protected static string clientSecret = "b125f13bf6b76ed81ee990142d841195";
21+
protected static string clientId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
22+
protected static string clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
2323
protected static string accesstoken;
2424
protected static string refreshtoken;
2525
public Configuration GetConfiguration()

0 commit comments

Comments
 (0)