Skip to content

Commit 47cec69

Browse files
committed
Release Aspose.Cells Cloud SDK for .Net 20.1
1 parent e82bd0b commit 47cec69

16 files changed

+307
-25
lines changed

Aspose.Cells-Cloud.nuspec

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>Aspose.Cells-Cloud</id>
5-
<version>19.10</version>
5+
<version>20.1</version>
66
<title>Aspose.Cells Cloud SDK for .NET</title>
77
<authors>Aspose</authors>
88
<owners>asposecloud</owners>
99
<iconUrl>http://www.aspose.com/Images/aspose_cells_for_cloud_140px.png</iconUrl>
10-
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10+
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
11+
<projectUrl>https://products.aspose.cloud/cells/family</projectUrl>
12+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
13+
<summary>Aspose.Cells Cloud SDK for .NET.</summary>
1114
<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>
12-
<copyright>Aspose 2002-2019. All Rights Reserved.</copyright>
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>
16+
<copyright>Aspose 2002-2020. All Rights Reserved.</copyright>
1317
<tags>Excel Spreadsheet Aspose.Cells XLS XLSX TXT ODS</tags>
1418
<dependencies>
1519
<dependency id="Newtonsoft.Json" version="11.0.2.0" />

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

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,26 @@ public void CellsAutoFilterPutWorksheetColorFilterTest()
166166
ColorFilterRequest colorFilter = new ColorFilterRequest();
167167
Color color = new Color();//0, 255, 245, 2
168168
color.R = 255;
169-
color.G = 245;
169+
color.A = 245;
170+
color.B = 245;
171+
color.G = 0;
170172

171173
colorFilter.ForegroundColor = new CellsColor();
172174
colorFilter.ForegroundColor.Color = color;
175+
colorFilter.ForegroundColor.ThemeColor = new ThemeColor();
176+
colorFilter.ForegroundColor.ThemeColor.ColorType = "Text2";
177+
colorFilter.ForegroundColor.ThemeColor.Tint =1;
178+
colorFilter.ForegroundColor.Type = "Automatic";
179+
colorFilter.BackgroundColor = new CellsColor();
180+
colorFilter.BackgroundColor.Color = new Color();
181+
colorFilter.BackgroundColor.Color.A = 255;
182+
colorFilter.BackgroundColor.Color.R = 255;
183+
colorFilter.BackgroundColor.Color.B = 0;
184+
colorFilter.BackgroundColor.Color.G = 0;
185+
colorFilter.BackgroundColor.ThemeColor = new ThemeColor();
186+
colorFilter.BackgroundColor.ThemeColor.ColorType = "Text2";
187+
colorFilter.BackgroundColor.ThemeColor.Tint = 1;
188+
colorFilter.BackgroundColor.Type = "Automatic";
173189
colorFilter.Pattern = "Solid";
174190
bool? matchBlanks = true;
175191
bool? refresh = true;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class CellsBaseTest
2121
protected string MYDOC = "myDocument.xlsx";
2222
protected string PivTestFile = "TestCase.xlsx";
2323
protected string PivTestFile2 = "PivTestFile2.xlsx";
24-
protected string TEMPFOLDER = "Temp";
24+
protected string TEMPFOLDER = "DotnetTest";
2525
protected string SHEET1 = "Sheet1";
2626
protected string SHEET2 = "Sheet2";
2727
protected string SHEET3 = "Sheet3";

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,6 @@ public void CellsOleObjectsPutWorksheetOleObjectTest()
164164
oleObject.Height = 100;
165165
oleObject.ImageSourceFullName = imageFile;
166166
oleObject.SourceFullName = oleFile;
167-
oleObject.Bottom = 0;
168-
oleObject.Top = 0;
169167
oleObject = null;
170168
UpdateDataFile(instance,folder, name);
171169
UpdateDataFile(instance, oleFile);

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ public void CellsWorkbookPostWorkbookGetSmartMarkerResultTest()
370370
string folder = TEMPFOLDER;
371371
string outPath = null;
372372
UpdateDataFile(instance,folder, name);
373-
//UpdateDataFile(instance,xmlFile);
373+
UpdateDataFile(instance,xmlFile);
374374
var response = instance.CellsWorkbookPostWorkbookGetSmartMarkerResult(name, xmlFile, folder, outPath);
375375
Assert.IsInstanceOf<System.IO.Stream>(response, "response is System.IO.Stream");
376376
}
@@ -423,7 +423,7 @@ public void CellsWorkbookPostWorkbooksMergeTest()
423423
string mergeWith = "myDocument.xlsx";
424424
string folder = TEMPFOLDER;
425425
UpdateDataFile(instance,folder, name);
426-
//UpdateDataFile(instance,mergeWith);
426+
UpdateDataFile(instance,mergeWith);
427427
var response = instance.CellsWorkbookPostWorkbooksMerge(name, mergeWith, folder);
428428
Assert.IsInstanceOf<WorkbookResponse>(response, "response is WorkbookResponse");
429429
Assert.AreEqual(response.Code, 200);

0 commit comments

Comments
 (0)