Hi Kevin,
A few options you have that are pretty simple include copying the DLL's
into the bin directory for each application, or if you want only one copy
of the DLL on the system, place it where you like and add it to the GAC.
To add to the GAC, the assembly will need to have a strong name, and you
will want to consider whether you want both applications locked around that
DLL. Once in the GAC, all requests for a particular assembly (not found in
the local directory) will be resolved to the GAC copy. This means that if
you want to update the DLL, you'll need to implement a versioning policy or
take both applications off line.
Hope this helps,
Dan Rogers
Microsoft Corporation
--------------------