2025-12-17 10:32:52 +08:00
|
|
|
|
using Furion;
|
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
2025-12-17 11:12:13 +08:00
|
|
|
|
namespace YD_Event.Web.Entry;
|
2025-12-17 10:32:52 +08:00
|
|
|
|
|
|
|
|
|
|
public class SingleFilePublish : ISingleFilePublish
|
|
|
|
|
|
{
|
|
|
|
|
|
public Assembly[] IncludeAssemblies()
|
|
|
|
|
|
{
|
|
|
|
|
|
return Array.Empty<Assembly>();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string[] IncludeAssemblyNames()
|
|
|
|
|
|
{
|
|
|
|
|
|
return new[]
|
|
|
|
|
|
{
|
2025-12-17 11:12:13 +08:00
|
|
|
|
"YD_Event.Application",
|
|
|
|
|
|
"YD_Event.Core",
|
|
|
|
|
|
"YD_Event.Web.Core"
|
2025-12-17 10:32:52 +08:00
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|