Skip to content

Commit 2a79239

Browse files
committed
* Updated demo app to account for refactoring
1 parent b3de1ba commit 2a79239

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/DemoCommandLineSrcGen/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using System.Threading.Tasks;
1010

1111
using Ubiquity.NET.CommandLine;
12+
using Ubiquity.NET.Extensions;
1213

1314
namespace TestNamespace
1415
{
@@ -25,7 +26,7 @@ public static async Task<int> Main( string[] args )
2526
};
2627

2728
// start with information level for parsing; parsed options might specify different level
28-
var reporter = new ColoredConsoleReporter( MsgLevel.Information );
29+
var reporter = new ColoredConsoleReporter( MessageLevel.Information );
2930

3031
return await TestOptions.BuildRootCommand( ( options, ct ) => AppMainAsync( options, reporter, ct ) )
3132
.ParseAndInvokeResultAsync( reporter, cts.Token, args );

0 commit comments

Comments
 (0)