vote up 0 vote down star

Can I put my "bin" folder with all of its .dll files at a higher level then the IIS Local Path/web root for the site? I need to keep my dll files in a directory outside of my project is this possible, I tried to use a virtual directory but .net seems to ignore it.

Can I use a virtual directory for my bin folder?

DUPLICATE: More info provided here: http://stackoverflow.com/questions/375887/adding-net-code-to-a-classic-asp-website-cant-reference-namespaces-in-dll-file

flag

Why do you want to do this? – John Sheehan Dec 17 '08 at 21:25
Carlton, why is this a duplicate? I don't see another. – John Sheehan Dec 17 '08 at 21:26

closed as exact duplicate by John Sheehan Dec 17 '08 at 21:35

3 Answers

vote up 0 vote down check

No, you cannot. Maybe the GAC will work.

link|flag
Yes the GAC was an option, the one problem there is it would complicate our deployment process. That would be my last resort option. – Agile Noob Dec 17 '08 at 21:36
vote up 0 vote down

This CH article outlines how to go about setting up the web.config to probe for multiple bins, maybe this could help:

http://www.codinghorror.com/blog/archives/000131.html

link|flag
this only supports subdirectories, not external ones msdn.microsoft.com/en-us/library/… – John Sheehan Dec 17 '08 at 21:31
vote up 1 vote down

You can. You will need to modify the config file for your application to probe the location:

<runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <probing privatePath="MyCoolNewPath/bin" />
  </assemblyBinding>
</runtime>
link|flag
probing.PrivatePath does not allow paths outside of the root ("Specifies application base subdirectories for the common language runtime to search when loading assemblies."), so they're not external – John Sheehan Dec 17 '08 at 21:30
I agree with John, would be great if you could just say <probing privatePath="../MyCoolNewPath/bin" />, but it doesn't work that way. This method is meant to give you the ability to override global libraries inside of the local folder. In other words this is the reverse of what I'm looking for. – Agile Noob Dec 17 '08 at 21:38
gotcha, thank you for the clarification. – schmoopy Feb 7 at 2:33

Not the answer you're looking for? Browse other questions tagged or ask your own question.