File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1818 </PackageVersion >
1919 <PackageVersion Include =" Shouldly" Version =" 4.2.1" />
20- <PackageVersion Include =" Spectre.Console" Version =" 0.50 .0" />
20+ <PackageVersion Include =" Spectre.Console" Version =" 0.54 .0" />
2121 <PackageVersion Include =" Spectre.Console.Analyzer" Version =" 1.0.0" >
2222 <PrivateAssets >all</PrivateAssets >
2323 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
2424 </PackageVersion >
25- <PackageVersion Include =" Spectre.Console.Cli" Version =" 0.50.0 " />
25+ <PackageVersion Include =" Spectre.Console.Cli" Version =" 0.53.1 " />
2626 <PackageVersion Include =" xunit" Version =" 2.9.3" />
2727 <PackageVersion Include =" xunit.runner.visualstudio" Version =" 3.1.5" >
2828 <PrivateAssets >all</PrivateAssets >
Original file line number Diff line number Diff line change 22
33internal sealed class AppCommand : Command
44{
5- public override int Execute ( CommandContext context )
5+ public override int Execute ( CommandContext context , CancellationToken cancellationToken )
66 {
77 try
88 {
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ internal sealed class BenchmarkCommand : Command<BenchmarkSettings>
55 [ SuppressMessage ( "ReSharper" , "RedundantNullableFlowAttribute" ) ]
66 public override int Execute (
77 [ NotNull ] CommandContext context ,
8- [ NotNull ] BenchmarkSettings settings )
8+ [ NotNull ] BenchmarkSettings settings ,
9+ CancellationToken cancellationToken )
910 {
1011 try
1112 {
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ internal sealed class InfoCommand : Command<ProblemSettings>
55 [ SuppressMessage ( "ReSharper" , "RedundantNullableFlowAttribute" ) ]
66 public override int Execute (
77 [ NotNull ] CommandContext context ,
8- [ NotNull ] ProblemSettings settings )
8+ [ NotNull ] ProblemSettings settings ,
9+ CancellationToken cancellationToken )
910 {
1011 try
1112 {
Original file line number Diff line number Diff line change 33internal sealed class ListCommand : Command
44{
55 [ SuppressMessage ( "ReSharper" , "RedundantNullableFlowAttribute" ) ]
6- public override int Execute ( [ NotNull ] CommandContext context )
6+ public override int Execute ( [ NotNull ] CommandContext context , CancellationToken cancellationToken )
77 {
88 try
99 {
Original file line number Diff line number Diff line change 33internal sealed class WorkflowCommand : Command
44{
55 [ SuppressMessage ( "ReSharper" , "RedundantNullableFlowAttribute" ) ]
6- public override int Execute ( [ NotNull ] CommandContext context )
6+ public override int Execute ( [ NotNull ] CommandContext context , CancellationToken cancellationToken )
77 {
88 try
99 {
You can’t perform that action at this time.
0 commit comments