@Shrike,
Please see the following sample code that works fine with .NET Core assembly for your reference:
e.g
Sample code:
//Instantiating a Workbook object
Workbook workbook = new Workbook();
//Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.Worksheets[0];
//Accessing the "A1" cell from the worksheet
Aspose.Cells.Cell cell = worksheet.Cells["A1"];
//Adding some value to the "A1" cell
cell.PutValue("Hello Aspose!");
Style st = cell.GetStyle();
Aspose.Cells.Font font = st.Font;
//Setting the font name to "Times New Roman"
font.Name = "Times New Roman";
//Setting font size to 14
font.Size = 14;
//setting font color as Red
font.Color = Aspose.Cells.Drawing.Color.Red;
cell.SetStyle(st)
;
//Saving the Excel file
workbook.Save(@"dest2.xls");
For documentation, I think you may check the Aspose.Cells.xml file in the same folder, i.e., “\netCore” for your reference. And, once we develop those missing features, we will add a document to list the API Changes and other limitations.