A question to ask with regards to this discussion, previously when i was using app_code, i had a common class with a number of function that are used across different modules in my application. This common class changes quite often, at times new functions are added, but other classes that calls this class static function are never affected, as the function it calls are still there, and the only change is adding of new function to this common class in the app_code.
Recently we have moved on to new framework where every module has its own class library.
again some modules do call the common-class static functions. just that now the common-class is no longer in the App_code, its a class library.
So it works, but everytime i add a new function to the common-class (class library) compile the class library and upload to (web server) bin folder, the other modules BREAKS, it complain that it cant find the function.
Solution seems to be that i cant just compile the "common-class" class library, but i have to compile all class library, then it all works with no error.
This is fine if only one person works on the solution, but if each module is done by different developer, this poses a problem.
just wondering is there a workaround?
thanks all..