Hi,
I'm evaluating Aspose.Cells on Linux with MONO.
I'm doing some test, but I can not open a workbook in xls or xlsx format.
My test workbook is very simple.
System.NullReferenceException: Object reference not set to an instance of an object
at ?.?.? (System.String , Int32 , FontStyle ) [0x00000] in :0
at ?.?.? (Aspose.Cells.WorksheetCollection ) [0x00000] in :0
at Aspose.Cells.WorksheetCollection.? () [0x00000] in :0
at Aspose.Cells.WorksheetCollection..ctor (Aspose.Cells.Workbook ) [0x00000] in :0
at Aspose.Cells.Workbook.? (System.String , Aspose.Cells.LoadOptions ) [0x00000] in :0
at Aspose.Cells.Workbook..ctor (System.String file) [0x00000] in :0
at xlsconv.Program.Run (System.String[] args) [0x00000] in :0
Here is the code I use for testing:
...
Aspose.Cells.Workbook wbk = new Aspose.Cells.Workbook("in.xls"); // exception raised
wbk.Save("out.xlsx", SaveFormat.Xlsx);
...
Aspose.Cells.Workbook wbk = new Aspose.Cells.Workbook("in.xlsx"); // exception raised
wbk.Save("out.xls", SaveFormat.SpreadsheetML);
...
The Aspose.Cells.dll(net2.0) version is 7.4.3.0 .
I'd like to know if I'm doing anything wrong or if Aspose.Cells is actually not supported on MONO. If not, is there any plan to do it?
Thanks in advance,
Ryouma