后厨api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
524 B

  1. using Furion;
  2. using System.Reflection;
  3. namespace BPA.SAAS.KitChenManage.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.KitChenManage.Application",
  16. "BPA.SAAS.KitChenManage.Core",
  17. "BPA.SAAS.KitChenManage.Web.Core"
  18. };
  19. }
  20. }
  21. }