Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 public Assembler(AssembleOptions options, TaskLoggingHelper log)
 {
     m_options = options;
     m_log     = log;
 }
Esempio n. 3
0
 public ExeAssembler(Artifact artifact, string sourceFullPath, string destinationFullPath, AssembleOptions options, TaskLoggingHelper log)
     : base(artifact, sourceFullPath, destinationFullPath, options, log)
 {
 }
Esempio n. 4
0
 public DllAssembler(Artifact artifact, string sourceFullPath, string destinationFullPath, AssembleOptions options, TaskLoggingHelper log, GacUtil gac)
     :   base(artifact, sourceFullPath, destinationFullPath, options, log)
 {
     m_gac = gac;
 }
Esempio n. 5
0
 protected AssembleTask()
 {
     m_options = new AssembleOptions();
 }