4

尝试从测试程序集中安装我所有的单独安装程序不断抛出

 "`{"Method not found: 'Castle.MicroKernel.Registration.ComponentRegistration1<!0> Castle.MicroKernel.Registration.ComponentRegistration1.DependsOn(Castle.MicroKernel.Registration.Dependency)'."}`" 

尽管代码可以从控制台应用程序/Windsows 服务完美运行,并且两个项目的引用是相同的:

Castle.Core
Castle.Facilities.FactorySupport
Castle.Facilities.Logging
Castle.Facilities.QuartzIntegration
Castle.Services.Logging.NLogIntegration
Castle.Windsor

有谁知道为什么测试程序集如此调用温莎容器的构建的原因:

   this.Container = new WindsorContainer(new XmlInterpreter())
       .Install(FromAssembly.Named("Assembly.WindowsService", 
                new CustomWindsorInstallerFactory()));

任何引用“DependsOn”方法的代码都会失败,例如:

container.Register(
    Component
         .For<ISftpRepository, ISftpFileStoreRepository, AbstractSftpFileStoreRepository>()
         .ImplementedBy<ConcreteSftpRepository>()
         .Properties(PropertyFilter.IgnoreAll)
         .DependsOn(
              Dependency.OnConfigValue("host", config.Host),

或者:

.ConfigureFor<QuartzJob>(
      x => 
      x.DependsOn(ServiceOverride.ForKey<IService>().Eq("intraService")))

注意:请注意,在主应用程序下运行时,所有安装类都可以正常工作,这纯粹是运行单元测试时的情况。

谢谢你的帮助。

4

1 回答 1

3

看起来您在某个地方有旧版本的 Windsor,在部署时会覆盖新版本

于 2013-01-16T04:16:36.013 回答