I know the feature of App_Code folder in website project, however if I want to add this folder in Web Application Project the purpose remains same, i.e I want to put some un-compiled code in my application.
I am aware of "Build Action" option in file properties, if we set it to "Compile", Visual Studio will compile the code (that is in App_Code folder) so the purpose fails. But if I keep "Build Action" to "Content" (it make sense) then I can't access classes in this folder from any other part of the application.
How can I access this code from outside of App_Code folder if I keep files "Build Action" to "Content"?