Example #1
0
        public void DeleteArtifact(Artifact artifact, Action action, string sourceFullPath, string destinationFullPath)
        {
            ArtifactAssembler assembler = CreateArtifactCopier(artifact, sourceFullPath, destinationFullPath);

            assembler.Clean(action);
        }
Example #2
0
        public void AssembleArtifact(Artifact artifact, Action action, string sourceFullPath, string destinationFullPath)
        {
            ArtifactAssembler assembler = CreateArtifactAssembler(artifact, sourceFullPath, destinationFullPath);

            assembler.Assemble(action);
        }