path to third party libraries

A

a.kamroot

Hi

I am new to c# and the .NET environment so I might not be using the
right terminology. However. I have downloaded Codeplex's public domain
Logging files (and assemblies) [from http://www.codeplex.com/PublicDomain].

I have installed the assemblies, and included the using PublicDomain
directive in my path. However, the compile fails since the complier
can't find the assembly. I suspect I need to put in a fully qualified
path to the libaries.

My question is how do I do that - make the compiler aware of the
location of third party assemblies?

I am willing to read up on this, if someone can point me to the right
URLs.

Thanks in advance.
Kamroot.
 
R

Rad [Visual C# MVP]

Hi

I am new to c# and the .NET environment so I might not be using the
right terminology. However. I have downloaded Codeplex's public domain
Logging files (and assemblies) [from http://www.codeplex.com/PublicDomain].

I have installed the assemblies, and included the using PublicDomain
directive in my path. However, the compile fails since the complier
can't find the assembly. I suspect I need to put in a fully qualified
path to the libaries.

My question is how do I do that - make the compiler aware of the
location of third party assemblies?

I am willing to read up on this, if someone can point me to the right
URLs.

Thanks in advance.
Kamroot.
You need to add a reference to the new assemblies in your project so
that the compiler can find them during the compilation process.
Alternatively you can add them in the Global Assembly Cache, but if
you go down this road you need to factor this fact into your
deployment, as your routine will as well need to add the assemblies to
the GAC as well
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top