Hey guys!
 
Using VS.NET 2003, I'm trying to create an assembly (as a class library) that 
forms as a core framework for all the web apps I build. 
 
Moreover, I want to build sub 'modules' in separate class libraries as 
sub-assemblies that are loosely coupled with the core assembly. 
 
Here's my folder structure
 
/webapproot/     (Core assembly Class Library project file location)
/webapproot/bin     (compiled Core assembly location)
/webapproot/modules/modulename/     (Module assembly Class Library project file 
location)
/webapproot/modules/modulename/bin     (Module assembly location)
    
 
Things to note: 
    -I'm prohibited from using the GAC
    -module directory cannot be a virtual web directory
    -The VS class library projects are stored and worked on from within the 
respective directories such that the assembly directly compiles into the bin 
subdirectory. 
 
The problem I'm having is I need to reference the core assembly in the sub 
assembly (via adding a reference in VS.NET) because the sub assembly inherits 
some base classes in the core assembly. But I also want to reference the sub 
assembly from within the core assembly so that I can call functions from the 
core assembly. When I do this, the core assembly won't compile claiming an 
inconsistency in version numbers. This only happens when both assemblies 
reference each other. 
 
But I like referencing the sub assembly from the core assembly because when I 
compile, it automatically copies over the sub-assembly into the webroot's bin 
directory and I can test the web app immediately. 
 
Anyone have any idea how I can solve this problem in a very simple way?
 
Thanks in advance for any thoughts or alternatieve solutions!
 
M.
Manassas, VA
c: 703/855/5576


[Non-text portions of this message have been removed]



------------------------ Yahoo! Groups Sponsor --------------------~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/saFolB/TM
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 




Reply via email to