Does DLL need to be in bin?

B

brett

Do I always need to put an ASP.NET website DLL in the bin folder?
Every I update ASPX and CS files, I have to upload into to different
locations. I'd rather just put them all in one place.

Thanks,
Brett
 
L

Lloyd Dupont

Do I always need to put an ASP.NET website DLL in the bin folder?
yes.
Every I update ASPX and CS files, I have to upload into to different
locations. I'd rather just put them all in one place.
what is the question?
do you complain that you have to do what you would like to be able to do?
 
L

Lau Lei Cheong

Say that he has a few websites located in different virtual directories, but
share the same codebase. I think he want all these websites fetch the .DLLs
in one single folder so he don't need seperate copies of the binaries.

I think maybe(well it's not tested so it's advised to test it on a testing
machine first) you can create "hard link" with the "fsutil hardlink create"
command on different website's directory to the same location. See if it
works.
 
B

brett

For one website, I just want to eliminate the bin folder and be able to
upload everything into the root folder. It sounds as though that is
not possible.

Thanks,
Brett
 
L

Lau Lei Cheong

Got it.

ms-help://MS.MSDNQTR.2005JUL.1033/cpguide/html/cpconspecifyingassemblyslocation.htm

Note: You may need to change the "MS.MSDNQTR.2005JUL.1033" to the version of
MSDN library you're using in order to view it.
 
J

Jim Cheshire

Alan said:

Keep in mind that for ASP.NET 1.1, assemblies can only be located in either
the /bin or the GAC. No other location is supported.

--
Jim Cheshire
================================
Blog: http://blogs.msdn.com/jamesche

Latest entry:
Getting the PID and TID of a COM Call

Describes how to get the PID of the
dllhost process a COM call is executing
in and how to locate the thread 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