Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Editor/Mono/BuildPipeline/BuildPipelineInterfaces.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ public interface IPreprocessBuildWithReport : IOrderedCallback
void OnPreprocessBuild(BuildReport report);
}

public interface IPreprocessBuildWithReportAsync : IOrderedCallback
{
Awaitable OnPreprocessBuildAsync(BuildReport report);
}

public interface IFilterBuildAssemblies : IOrderedCallback
{
string[] OnFilterAssemblies(BuildOptions buildOptions, string[] assemblies);
Expand All @@ -55,6 +60,11 @@ public interface IPostprocessBuildWithReport : IOrderedCallback
void OnPostprocessBuild(BuildReport report);
}

public interface IPostprocessBuildWithReportAsync : IOrderedCallback
{
Awaitable OnPostprocessBuildAsync(BuildReport report);
}

public interface IPostBuildPlayerScriptDLLs : IOrderedCallback
{
void OnPostBuildPlayerScriptDLLs(BuildReport report);
Expand Down