-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Stream with name 'WordDocument' not found." #1
Comments
Cheers for the feedback @NamelessHH! As a first step please could you add a unit test to the testing project that throws the exception you're seeing? That will give us a starting point for the issue. Thanks. |
I get this issue when running on Linux - same code works fine on Windows. |
@fergalmoran |
@tomaszzmuda - sorry, no. I gave up and used libreoffice api instead. |
Just ran into this while using the library. The problem is in
Document metadata streams begin with a unicode character like "\u0005DocumentSummary\0\0\0\0\0\0". In windows, if you call Just replace the |
The fix by michaelweber helped get past this error on .NET 6. Are there updates to nuget planned? |
In .NET Core 8.0, text.IndexOf("\0") returns 0. Using char version text.IndexOf(‘\0’) can resolve this issue.
|
I keep getting this issue when I try to use this library
`
`
It throws in the instantiation of the WordDocument
The text was updated successfully, but these errors were encountered: