Skip to content

Commit

Permalink
Release Aspose.Cells.Cloud SDK 20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
roywangaspose committed Feb 20, 2020
1 parent 47cec69 commit a5f0f40
Show file tree
Hide file tree
Showing 7 changed files with 303 additions and 41 deletions.
6 changes: 3 additions & 3 deletions Aspose.Cells-Cloud.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Aspose.Cells-Cloud</id>
<version>20.1</version>
<version>20.2</version>
<title>Aspose.Cells Cloud SDK for .NET</title>
<authors>Aspose</authors>
<owners>asposecloud</owners>
<iconUrl>http://www.aspose.com/Images/aspose_cells_for_cloud_140px.png</iconUrl>
<iconUrl>https://www.aspose.cloud/templates/asposecloud/App_Themes/V3/images/sdk/272x272/aspose_cells-for-net.png</iconUrl>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<projectUrl>https://products.aspose.cloud/cells/family</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<summary>Aspose.Cells Cloud SDK for .NET.</summary>
<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>
<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>
<releaseNotes>https://docs.aspose.cloud/display/cellscloud/Aspose.Cells+Cloud+20.2+Release+Notes</releaseNotes>
<copyright>Aspose 2002-2020. All Rights Reserved.</copyright>
<tags>Excel Spreadsheet Aspose.Cells XLS XLSX TXT ODS</tags>
<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions Aspose.Cells.Cloud.SDK.Test/Api/CellsBaseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ public class CellsBaseTest
protected ApiClient client;
protected Client.Configuration config;
protected string grantType = "client_credentials";
protected string clientId = "66164C51-693E-4904-A121-545961673EC1";
protected string clientSecret = "536e76768419db9585afdd37bb5f7533";
protected string clientId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
protected string clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
protected static string accesstoken;
protected string refreshtoken;
protected string BOOK1 = "Book1.xlsx";
Expand Down
4 changes: 2 additions & 2 deletions Aspose.Cells.Cloud.SDK.Test/Api/OAuthApiTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public void OAuthPostTest()
{
// TODO uncomment below to test the method and replace null with proper value
string grantType = "client_credentials";
string clientId = "66164C51-693E-4904-A121-545961673EC1";
string clientSecret = "536e76768419db9585afdd37bb5f7533";
string clientId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
string clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
var response = instance.OAuthPost(grantType, clientId, clientSecret);
Assert.IsInstanceOf<AccessTokenResponse>(response, "response is AccessTokenResponse");
Assert.IsNotNull(response.AccessToken);
Expand Down
307 changes: 291 additions & 16 deletions Aspose.Cells.Cloud.SDK/Api/CellsApi.cs

Large diffs are not rendered by default.

13 changes: 0 additions & 13 deletions Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.netcore.csproj

This file was deleted.

6 changes: 3 additions & 3 deletions Aspose.Cells.Cloud.SDK/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Configuration(ApiClient apiClient = null,
string tempFolderPath = null,
string dateTimeFormat = null,
int timeout = 100000,
string userAgent = "Swagger-Codegen/20.1/csharp"
string userAgent = "Swagger-Codegen/20.2/csharp"
)
{
setApiClientUsingDefault(apiClient);
Expand Down Expand Up @@ -94,7 +94,7 @@ public Configuration(ApiClient apiClient)
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "20.1";
public const string Version = "20.2";

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

return report;
}
Expand Down
4 changes: 2 additions & 2 deletions Examples/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public class Config
protected static Configuration config;
protected static OAuthApi oauth2 = null;
protected static string grantType = "client_credentials";
protected static string clientId = "78946fb4-3bd4-4d3e-b309-f9e2ff9ac6f9";
protected static string clientSecret = "b125f13bf6b76ed81ee990142d841195";
protected static string clientId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
protected static string clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
protected static string accesstoken;
protected static string refreshtoken;
public Configuration GetConfiguration()
Expand Down

0 comments on commit a5f0f40

Please sign in to comment.