2025-01-09 11:31:04 +08:00
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace YooAsset.Editor
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TaskCreateManifest_ESBP : TaskCreateManifest, IBuildTask
|
|
|
|
|
|
{
|
|
|
|
|
|
void IBuildTask.Run(BuildContext context)
|
|
|
|
|
|
{
|
2025-11-05 19:31:46 +08:00
|
|
|
|
CreateManifestFile(false, true, false, context);
|
2025-01-09 11:31:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override string[] GetBundleDepends(BuildContext context, string bundleName)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Array.Empty<string>();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|