BuildServerUploaderConsole.Processes.CopyInformation.PerformCopy C# (CSharp) 메소드

PerformCopy() 공개 메소드

public PerformCopy ( IResults results, string message ) : void
results IResults
message string
리턴 void
        public void PerformCopy(IResults results, string message)
        {

            System.IO.File.Copy(SourceFile, DestinationFile, true);

            if(!string.IsNullOrEmpty(Namespace))
            {
                ReplaceNamespace(DestinationFile, Namespace);
            }

            results.WriteMessage(message);

        }