System.IO.Packaging reference
-
Sunday, April 10, 2011 8:15 PMHow do you add a reference for the System.IO.Packaging namespace in a web app? I don't see System.IO.Packaging under the .NET or COM tab when adding a reference.
All Replies
-
Sunday, April 10, 2011 8:40 PM
You need to add a reference to the WindowsBase Assembly.
You can see in which Assembly a type resides by checking the MSDN page for the type:
http://msdn.microsoft.com/en-us/library/system.io.packaging.package.aspx
Namespace: System.IO.Packaging
Assembly: WindowsBase (in WindowsBase.dll) <==== here- Proposed As Answer by Jesse HouwingMicrosoft Community Contributor Sunday, April 10, 2011 8:40 PM
- Marked As Answer by n3wb13 Sunday, April 10, 2011 8:42 PM
-
Sunday, April 10, 2011 8:42 PMThank you.

