예제 #1
0
파일: Assembler.cs 프로젝트: formist/LinkMe
        public void DeleteArtifact(Artifact artifact, Action action, string sourceFullPath, string destinationFullPath)
        {
            ArtifactAssembler assembler = CreateArtifactCopier(artifact, sourceFullPath, destinationFullPath);

            assembler.Clean(action);
        }
예제 #2
0
파일: Assembler.cs 프로젝트: formist/LinkMe
        public void AssembleArtifact(Artifact artifact, Action action, string sourceFullPath, string destinationFullPath)
        {
            ArtifactAssembler assembler = CreateArtifactAssembler(artifact, sourceFullPath, destinationFullPath);

            assembler.Assemble(action);
        }