Saravanan
Saravanan

Reputation: 11592

How to include third Party dll files in Mono 2.10?

I have developed an windows desktop Application using C# .NET 4 framwork.Now, we are going to using MONO2.10 for cross platform.For sample, I have downloaded the mono 2.10 on windows version and able to run my .net exe.While doing so, Its Working fine and it says error the below mentioned error msg. As per my understanding, I think the DLL Reference is not included properly...

i am using 2 third party dll files in application.

  1. Ionic.dll for .net zip library
  2. DocumentFormat.OpenXml.dll for XML file management.

Please guide me to how to include these dll reference in Mono on windows?

Mono_Error_Msg

Thanks & Regards,
Saravanan.P

Upvotes: 1

Views: 2534

Answers (1)

Dan Abramov
Dan Abramov

Reputation: 268255

This library is not part of Microsoft .NET or Mono Framework.
Therefore, you just need to either put it in GAC or in the same folder with your application, just like you normally do with third-party components.

Upvotes: 1

Related Questions