protected ArtifactAssembler(Artifact artifact, string sourceFullPath, string destinationFullPath, AssembleOptions options, TaskLoggingHelper log) { m_artifact = artifact; m_sourceFullPath = GetAdjustedSourceFullPath(sourceFullPath, options.Configuration); m_destinationFullPath = destinationFullPath; m_options = options; m_log = log; }
public Assembler(AssembleOptions options, TaskLoggingHelper log) { m_options = options; m_log = log; }
public ExeAssembler(Artifact artifact, string sourceFullPath, string destinationFullPath, AssembleOptions options, TaskLoggingHelper log) : base(artifact, sourceFullPath, destinationFullPath, options, log) { }
public DllAssembler(Artifact artifact, string sourceFullPath, string destinationFullPath, AssembleOptions options, TaskLoggingHelper log, GacUtil gac) : base(artifact, sourceFullPath, destinationFullPath, options, log) { m_gac = gac; }
protected AssembleTask() { m_options = new AssembleOptions(); }