We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34bca8c commit 59ac02eCopy full SHA for 59ac02e
2 files changed
Code/UsingMSBuildCopyOutputFileToFastDebug/Program.cs
@@ -14,9 +14,12 @@ static void Main(string[] args)
14
15
CommandLine.Parse(args).AddHandler<CleanOptions>(c =>
16
{
17
-
18
- });
19
- Console.WriteLine("UsingMSBuildCopyOutputFileToFastDebug");
+ Logger.Message($"Enter CleanOptions");
+ })
+ .AddHandler<CopyOutputFileOptions>(c =>
20
+ {
21
+ Logger.Message($"Enter CopyOutputFileOptions");
22
+ });
23
}
24
25
private static IMSBuildLogger Logger { get; } = new MSBuildConsoleLogger();
build/Version.props
@@ -1,5 +1,5 @@
1
<Project>
2
<PropertyGroup>
3
- <Version>1.3.205</Version>
+ <Version>1.3.206</Version>
4
</PropertyGroup>
5
</Project>
0 commit comments