YD_Event.Admin/YD_Event.Web.Entry/SingleFilePublish.cs
2025-12-17 11:12:13 +08:00

22 lines
418 B
C#

using Furion;
using System.Reflection;
namespace YD_Event.Web.Entry;
public class SingleFilePublish : ISingleFilePublish
{
public Assembly[] IncludeAssemblies()
{
return Array.Empty<Assembly>();
}
public string[] IncludeAssemblyNames()
{
return new[]
{
"YD_Event.Application",
"YD_Event.Core",
"YD_Event.Web.Core"
};
}
}