17 lines
439 B
C#
17 lines
439 B
C#
![]() |
|
|||
|
using System;
|
|||
|
|
|||
|
namespace YooAsset.Editor
|
|||
|
{
|
|||
|
public class TaskPrepare_ESBP : IBuildTask
|
|||
|
{
|
|||
|
void IBuildTask.Run(BuildContext context)
|
|||
|
{
|
|||
|
var buildParametersContext = context.GetContextObject<BuildParametersContext>();
|
|||
|
var buildParameters = buildParametersContext.Parameters;
|
|||
|
|
|||
|
// 检测基础构建参数
|
|||
|
buildParametersContext.CheckBuildParameters();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|