public static void OnAddedExecutable(BuildReport report, int fileIndex) { IBuildAnalyzer analyzerForTarget = BuildReportHelper.GetAnalyzerForTarget(report.summary.platform); if (analyzerForTarget != null) { analyzerForTarget.OnAddedExecutable(report, fileIndex); } }
public static void OnAddedExecutable(BuildReport report, int fileIndex) { IBuildAnalyzer analyzerForTarget = GetAnalyzerForTarget(report.buildTarget); if (analyzerForTarget != null) { analyzerForTarget.OnAddedExecutable(report, fileIndex); } }
public static void OnAddedExecutable(BuildReport report, int fileIndex) { IBuildAnalyzer analyzerForTarget = BuildReportHelper.GetAnalyzerForTarget(report.buildTarget); if (analyzerForTarget == null) { return; } analyzerForTarget.OnAddedExecutable(report, fileIndex); }