We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59ac02e commit 7b506c7Copy full SHA for 7b506c7
2 files changed
Code/UsingMSBuildCopyOutputFileToFastDebug/Program.cs
@@ -10,6 +10,11 @@ static void Main(string[] args)
10
{
11
#if DEBUG
12
Logger.Message($"UsingMSBuildCopyOutputFileToFastDebug {Environment.CommandLine}");
13
+
14
+ for (var i = 0; i < args.Length; i++)
15
+ {
16
+ Logger.Message($"Args[{i}]={args[i]}");
17
+ }
18
#endif
19
20
CommandLine.Parse(args).AddHandler<CleanOptions>(c =>
build/Version.props
@@ -1,5 +1,5 @@
1
<Project>
2
<PropertyGroup>
3
- <Version>1.3.206</Version>
+ <Version>1.3.207</Version>
4
</PropertyGroup>
5
</Project>
0 commit comments