public static IDeploymentTargetInfo GetTargetInfo(BuildTargetGroup targetGroup, BuildTarget buildTarget, DeploymentTargetId targetId) { IDeploymentTargetsExtension extension = DeploymentTargetManager.GetExtension(targetGroup, buildTarget); return(extension.GetTargetInfo(targetId, null)); }
public static void LaunchBuildOnTarget(BuildTargetGroup targetGroup, BuildReport buildReport, DeploymentTargetId targetId, ProgressHandler progressHandler = null) { IDeploymentTargetsExtension extension = DeploymentTargetManager.GetExtension(targetGroup, buildReport.buildTarget); extension.LaunchBuildOnTarget(buildReport, targetId, progressHandler); }
public void LaunchBuildOnTarget(BuildProperties buildProperties, DeploymentTargetId targetId, ProgressHandler progressHandler = null) { m_Extension.LaunchBuildOnTarget(m_Context, buildProperties, targetId, progressHandler); }
public static void LaunchBuildOnTarget(BuildTargetGroup targetGroup, BuildReport buildReport, DeploymentTargetId targetId, ProgressHandler progressHandler = null) { DeploymentTargetManager.LaunchBuildOnTarget(targetGroup, buildReport.summary.platform, BuildProperties.GetFromBuildReport(buildReport), targetId, progressHandler); }
public virtual void LaunchBuildOnTarget(BuildProperties buildProperties, DeploymentTargetId targetId, ProgressHandler progressHandler = null) { throw new NotSupportedException(); }
public IDeploymentTargetInfo GetTargetInfo(DeploymentTargetId targetId) { return(m_Extension.GetTargetInfo(m_Context, targetId)); }
public virtual IDeploymentTargetInfo GetTargetInfo(DeploymentTargetId targetId, ProgressHandler progressHandler = null) { return(new DefaultDeploymentTargetInfo()); }
public virtual IDeploymentTargetInfo GetTargetInfo(IDeploymentTargetsMainThreadContext context, DeploymentTargetId targetId, ProgressHandler progressHandler = null) { return(new DefaultDeploymentTargetInfo()); }
internal DeploymentTargetLogger GetTargetLogger(DeploymentTargetId targetId) { return(m_Extension.GetTargetLogger(m_Context, targetId)); }
public virtual DeploymentTargetLogger GetTargetLogger(IDeploymentTargetsMainThreadContext context, DeploymentTargetId targetId) { return(new DefaultDeploymentTargetLogger()); }
public static void LaunchBuildOnTarget(BuildTargetGroup targetGroup, BuildTarget buildTarget, BuildProperties buildProperties, DeploymentTargetId targetId, ProgressHandler progressHandler = null) { IDeploymentTargetsExtension extension = GetExtension(targetGroup, buildTarget); extension.LaunchBuildOnTarget(buildProperties, targetId, progressHandler); }