Murat Korkmaz
Murat Korkmaz

Reputation: 1357

Please suggest a .NET 2.0 based OpenXML library

I know that Microsoft's OpenXML SDK is for .NET 3.5. I am looking for a .NET 2.0 library that could manage xlsx, docx formats. And can change the office format properties.

Upvotes: 1

Views: 3477

Answers (2)

Matt G
Matt G

Reputation: 437

Aspose supports all the different .Net framework versions, and can manipulate both DOCX and XLSX. It isn't free however, so it may or may not help.

Upvotes: 0

Todd Main
Todd Main

Reputation: 29155

There is no library for 2.0. What you'll need to do is manually work with Open XML. First you'll need an unpacking/repacking function (not sure if WindowsBase which hosts System.IO.Packaging is available for 2.0, but you can use other zip utilities).

Upvotes: 2

Related Questions