Contains overall summary information about a build.
This struct is part of the BuildReport and is accessible via BuildReport.summary.
It contains detailed information such as build times, platform, options, and result.
For a lightweight alternative that can be read without loading the full BuildReport,
use BuildReportSummary, which is stored as JSON and tracked by the BuildHistory.
Additional resources: BuildReportSummary, BuildHistory
| Property | Description |
|---|---|
| assetBundleOptions | If the build is an AssetBundle build this returns the BuildAssetBundleOptions passed to BuildPipeline.BuildAssetBundles. |
| buildEndedAt | The time the build ended. |
| buildManifestHash | For ContentDirectory builds this returns the Hash128 of the build manifest. For other build types this returns a default Hash128. |
| buildName | For ContentDirectory builds this returns the build name. For Player builds this returns the product name from PlayerSettings. |
| buildSessionGuid | A unique identifier for the build session in the Unity Editor. |
| buildStartedAt | The time the build was started. |
| buildType | The type of build. |
| dataPath | The platform-specific path of the Data folder for a player build. For AssetBundle builds, this will be identical to the output path. |
| guid | The GUID of a Player build. |
| multiProcessEnabled | Whether the multi-process option was enabled for the build. |
| options | The BuildOptions used for the build, as passed to BuildPipeline.BuildPlayer. |
| outputPath | The output path for the build, as provided to BuildPipeline.BuildPlayer. |
| platform | The platform that the build was created for. |
| platformGroup | The platform group the build was created for. |
| result | The outcome of the build. |
| totalErrors | The total number of errors and exceptions recorded during the build process. |
| totalSize | The total size of the build output, in bytes. |
| totalTime | The total time taken by the build process. |
| totalWarnings | The total number of warnings recorded during the build process. |
| Method | Description |
|---|---|
| GetSubtarget | The subtarget that the build was created for. |