2023-04-12 22:30:42 +08:00
|
|
|
|
using Furion;
|
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
2023-04-15 17:33:42 +08:00
|
|
|
|
namespace Yi.Furion.Web.Entry;
|
2023-04-12 22:30:42 +08:00
|
|
|
|
|
|
|
|
|
|
public class SingleFilePublish : ISingleFilePublish
|
|
|
|
|
|
{
|
|
|
|
|
|
public Assembly[] IncludeAssemblies()
|
|
|
|
|
|
{
|
|
|
|
|
|
return Array.Empty<Assembly>();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string[] IncludeAssemblyNames()
|
|
|
|
|
|
{
|
|
|
|
|
|
return new[]
|
|
|
|
|
|
{
|
2023-04-20 22:36:32 +08:00
|
|
|
|
"Yi.Framework.Infrastructure",
|
|
|
|
|
|
"Yi.Framework.Module",
|
|
|
|
|
|
"Yi.Furion.Application",
|
|
|
|
|
|
"Yi.Furion.Core",
|
|
|
|
|
|
"Yi.Furion.Sqlsugar.Core",
|
|
|
|
|
|
"Yi.Furion.Core"
|
2023-04-12 22:30:42 +08:00
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|