J
Jon Maz
Hi All,
I would like to have the following folder structure for an asp.net website:
MasterFolder
|---\AppRoot
| --- webform.aspx
| --- web.config
| --- global.asax
| |--- \images
| |--- \styles
| |--- \downloads
| |--- \usercontrols
|
|---\DllFolder
| --- some dll's
| |--- \SubDllFolder
| --- other dll's
I'd like to know if it's possible to have the folder containing the dll's
(the "bin" folder, though renamed) outside the root folder. I've done my
research on Google Groups, and don't want to use the GAC (because you will
have to remove and readd the assembly on every change), and it seems if you
use this method:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="bin;bin2\subbin;bin3"/>
</assemblyBinding>
</runtime>
</configuration>
....then the directories specified in privatepath *must* be subdirectories of
the application base directory.
What I'm after doesn't seem *that* strange to me - there must be a way of
doing this, surely?
Any help much appreciated,
TIA,
JON
I would like to have the following folder structure for an asp.net website:
MasterFolder
|---\AppRoot
| --- webform.aspx
| --- web.config
| --- global.asax
| |--- \images
| |--- \styles
| |--- \downloads
| |--- \usercontrols
|
|---\DllFolder
| --- some dll's
| |--- \SubDllFolder
| --- other dll's
I'd like to know if it's possible to have the folder containing the dll's
(the "bin" folder, though renamed) outside the root folder. I've done my
research on Google Groups, and don't want to use the GAC (because you will
have to remove and readd the assembly on every change), and it seems if you
use this method:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="bin;bin2\subbin;bin3"/>
</assemblyBinding>
</runtime>
</configuration>
....then the directories specified in privatepath *must* be subdirectories of
the application base directory.
What I'm after doesn't seem *that* strange to me - there must be a way of
doing this, surely?
Any help much appreciated,
TIA,
JON