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