Skip to content

Commit 7b506c7

Browse files
committed
将每个命令行参数都进行输出
用于了解是否输入不对的命令行
1 parent 59ac02e commit 7b506c7

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

Code/UsingMSBuildCopyOutputFileToFastDebug/Program.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ static void Main(string[] args)
1010
{
1111
#if DEBUG
1212
Logger.Message($"UsingMSBuildCopyOutputFileToFastDebug {Environment.CommandLine}");
13+
14+
for (var i = 0; i < args.Length; i++)
15+
{
16+
Logger.Message($"Args[{i}]={args[i]}");
17+
}
1318
#endif
1419

1520
CommandLine.Parse(args).AddHandler<CleanOptions>(c =>

build/Version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.3.206</Version>
3+
<Version>1.3.207</Version>
44
</PropertyGroup>
55
</Project>

0 commit comments

Comments
 (0)