Skip to content

Commit e6a637c

Browse files
committed
优化文本
1 parent ae991da commit e6a637c

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

  • Code/UsingMSBuildCopyOutputFileToFastDebug

Code/UsingMSBuildCopyOutputFileToFastDebug/Program.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public override bool Execute()
3636
str.Append("\r\n"); // AppendLine 干什么去了
3737
}
3838

39-
str.Append("当前将要复制的文件夹");
39+
str.Append("将要复制到的文件夹为");
4040
str.Append(DestinationFolder);
4141
str.Append("\r\n");
4242

@@ -68,13 +68,15 @@ public override bool Execute()
6868

6969
}
7070

71-
Console.WriteLine("复制文件");
71+
Console.WriteLine("开始复制文件 " + destinationFile);
7272

7373
File.Copy(sourceFile.FullName, destinationFile);
7474

75-
Console.WriteLine("复制完成" + destinationFile);
75+
Console.WriteLine("完成复制文件 " + destinationFile);
7676
}
7777

78+
Console.WriteLine("全部复制完成");
79+
7880
//Tracer = str.ToString();
7981
return true;
8082
}

0 commit comments

Comments
 (0)