Shared libraries on dotnet

  • Thread starter Thread starter Tascien
  • Start date Start date
T

Tascien

Question:

I have a shared .dll in e:\my projects\shared.dll

I build and publish the site without any problem on my computer... but
when i am editing the site remotely using Front Page Extensions, i
get, Library Not found error because the computer does not have that
dll.

so, should i copy the dll from the original computer and put it on the
new computer... this could be a lot of work since that dll would be
changing time to time...

any solution? how can i tell asp.net just to use the one in the bin
online instead of trying to find it on the local hard drive?

T.
 
Yes, you should be copying the DLL to the /bin folder of the other computer.
If you are using VS.NET you could map a drive to the computer and set the
compiler to copy the DLL to the folder on the mapped drive. Or, a small
batch file to run at the end of the compile could do the copying to save the
hassle.

Ken
 
Back
Top