Hello!
I generated a custom revision store file sample.one using Aspose.Note library(https://www.nuget.org/packages/Aspose.Note/19.9.0) and code below.
var document = new Document(); document.AppendChildLast(new Page(null) { Title = new Title(null) { TitleText = new RichText(null) { DefaultStyle = TextStyle.DefaultMsOneNoteTitleDateStyle, Text = "Title" } } }); document.Save("sample.one");
I uploaded file to dropbox: https://www.dropbox.com/s/2x2u4mgkdxb8u0u/sample.one?dl=0
The produced file is successfully opened by OneNote desktop app(version 16.0.12026.20264). But when I try to sync it to OneDrive an error is raised: (0x80004005) tag_bvvel.
I successfully loaded notebook via Web interface(https://onedrive.live.com). But for unknown reason I can't open it using OneNote Online editor.
I would like to know what's wrong with this file? Why OneNote Online can't handle it?
Thanks!