里面的typeof(ConfigurationModule) 引用什么dll,
我是参考这个帖子写的rocketMQ
https://blog.csdn.net/weixin_37207795/article/details/81023757#commentBoxusing FS.Modules;
using FS.MQ.RocketMQ;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace FarseerDemo
{
    [DependsOn(typeof(ConfigurationModule), typeof(RocketMQModule))]
    public class PushModule : FarseerModule
    {
        public override void PreInitialize()
        {
            base.PreInitialize();
        }
        public override void PostInitialize()
        {
            base.PostInitialize();
        }
        public override void Shutdown()
        {
            base.Shutdown();
        }
    }
}