.Net Framework Redistributable
Are these DLL's below are included in .Net Fr开发者_高级运维amework Redistributable?
DocumentFormat.OpenXml.dll
Microsoft.Office.Interop.Word.dll
Thank you
No. You can get DocumentFormat.OpenXml.dll from the Open XML SDK 2.0 for Microsoft Office. The download is here.
The Microsoft.Office.Interop.Word.dll assembly is a COM interop assembly. It is automatically generated when you use Project + Add Reference and select Microsoft Word from the COM tab. That won't happen when you've got the Office PIA installed, that's okay.
Both are redistributable, but they are not included in the .Net Framework Redistributable.
Microsoft.Office.Interop.Word.dll is a Microsoft Office Primary Interop Assembly (can be generated).
DocumentFormat.OpenXml.dll is in the Open XML SDK
精彩评论