First of all thanks Mike for your fast answer and well in my web
project i already have the Castle.Monorail.Framework reference and yes
i can show you (all) the import reference in my boo file.
Here it is:
import System.Reflection
import Castle.MonoRail.Framework
import Castle.MonoRail.WindsorExtension
Facility( "rails", MonoRailFacility )
webAsm = ( Assembly.Load("WebProject.Web"),
Assembly.Load("Castle.MonoRail.ViewComponents") )
activeRecordAssemblies = ( Assembly.Load("ModelProject.Model"), )
for asm in webAsm:
for type in asm.GetTypes():
if typeof(Controller).IsAssignableFrom(type):
Component(type.Name, type)
elif typeof(ViewComponent).IsAssignableFrom(type):
Component(type.Name, type)
Component("active_record_repository", IRepository, ARRepository)
Component("active_record_unit_of_work", IUnitOfWorkFactory,
ActiveRecordUnitOfWorkFactory, assemblies: activeRecordAssemblies )
So there it is Mike and also i was reading that maybe that could be
because a trouble of permission that cannot find or load the assembly
in my .NET Framework 2 Config i already set the Machine All Code
Property to Full Trusted that i find in my search of a solution but it
isn't working yet. Thanks in advance
Regards