22 lines
418 B
C#
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"
|
|
};
|
|
}
|
|
} |