您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

23 行
544 B

  1. using Furion;
  2. using System.Reflection;
  3. namespace BPA.SAAS.KitChenManageOrder.Web.Entry
  4. {
  5. public class SingleFilePublish : ISingleFilePublish
  6. {
  7. public Assembly[] IncludeAssemblies()
  8. {
  9. return Array.Empty<Assembly>();
  10. }
  11. public string[] IncludeAssemblyNames()
  12. {
  13. return new[]
  14. {
  15. "BPA.SAAS.KitChenManageOrder.Application",
  16. "BPA.SAAS.KitChenManageOrder.Core",
  17. "BPA.SAAS.KitChenManageOrder.Web.Core"
  18. };
  19. }
  20. }
  21. }