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