Combining 2 assemblies..GAC

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

SQLParser.dll has a reference to Parser.dll. "How can I contain both the DLLs in a single assembly?" This assembly file has to be published in the GAC. Will the reference (early binding) take place automatically or should I have to use the Assembly.Load function?

Any help is appreciated.
Thanks,
Arr S
 
You should put them both into the GAC, I think.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://www.x-unity.net/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

Arr S said:
SQLParser.dll has a reference to Parser.dll. "How can I contain both the
DLLs in a single assembly?" This assembly file has to be published in the
GAC. Will the reference (early binding) take place automatically or should I
have to use the Assembly.Load function?
 
Back
Top