N
Nick
So, this link:
http://msdn2.microsoft.com/en-us/library/54dwfbb7.aspx
says, "The build order is inferred from the top-down order of the codeSubDirectories collection. The App_Code directory is built last. However, there are no build order dependencies, which means that the build order is not significant."
Yet, if I have two subfolders in my project and have the web.config set like this:
<codeSubDirectories>
<add directoryName="SalesOrderViewer" />
<add directoryName="InterCoInvoices" />
</codeSubDirectories>
.... then classes inside SalesOrderViewer cannot see classes inside InterCoInvoices.... but InterCoInvoices can see SalesOrderViewer. Neither of these subfolders of classes can see anything in the App_Code root directory.
So is the documentation lying to me? or am I doing something wrong?
Thanks in advance!
-Nick Franceschina
http://msdn2.microsoft.com/en-us/library/54dwfbb7.aspx
says, "The build order is inferred from the top-down order of the codeSubDirectories collection. The App_Code directory is built last. However, there are no build order dependencies, which means that the build order is not significant."
Yet, if I have two subfolders in my project and have the web.config set like this:
<codeSubDirectories>
<add directoryName="SalesOrderViewer" />
<add directoryName="InterCoInvoices" />
</codeSubDirectories>
.... then classes inside SalesOrderViewer cannot see classes inside InterCoInvoices.... but InterCoInvoices can see SalesOrderViewer. Neither of these subfolders of classes can see anything in the App_Code root directory.
So is the documentation lying to me? or am I doing something wrong?
Thanks in advance!
-Nick Franceschina