SingleFilePublish.cs 513 B

123456789101112131415161718192021222324
  1. using Furion;
  2. using System.Reflection;
  3. namespace YBEE.EQM.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. "YBEE.EQM.Application",
  16. "YBEE.EQM.Core",
  17. "YBEE.EQM.EntityFramework.Core",
  18. "YBEE.EQM.Web.Core"
  19. };
  20. }
  21. }
  22. }