18 lines
416 B
C#
18 lines
416 B
C#
|
|
using System;
|
|
|
|
namespace YooAsset.Editor
|
|
{
|
|
public class TaskCreateManifest_ESBP : TaskCreateManifest, IBuildTask
|
|
{
|
|
void IBuildTask.Run(BuildContext context)
|
|
{
|
|
CreateManifestFile(false, false, context);
|
|
}
|
|
|
|
protected override string[] GetBundleDepends(BuildContext context, string bundleName)
|
|
{
|
|
return Array.Empty<string>();
|
|
}
|
|
}
|
|
} |