mirror of
				https://github.com/spectreconsole/spectre.console.git
				synced 2025-10-25 15:19:23 +00:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			c5e2409b38
			...
			renovate/d
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 9f622f3123 | ||
|  | e51812237e | 
							
								
								
									
										2
									
								
								.github/workflows/publish.yaml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/publish.yaml
									
									
									
									
										vendored
									
									
								
							| @@ -61,7 +61,7 @@ jobs: | |||||||
|       uses: actions/setup-dotnet@v5 |       uses: actions/setup-dotnet@v5 | ||||||
|  |  | ||||||
|     - name: Setup Node.js |     - name: Setup Node.js | ||||||
|       uses: actions/setup-node@v6 |       uses: actions/setup-node@v5 | ||||||
|       with: |       with: | ||||||
|         node-version: '22' |         node-version: '22' | ||||||
|  |  | ||||||
|   | |||||||
| @@ -18,7 +18,7 @@ public class HelloCommand : Command<HelloCommand.Settings> | |||||||
|     } |     } | ||||||
|  |  | ||||||
|  |  | ||||||
|     public override int Execute(CommandContext context, Settings settings) |     public override int Execute(CommandContext context, Settings settings, CancellationToken cancellationToken) | ||||||
|     { |     { | ||||||
|         AnsiConsole.MarkupLine($"Hello, [blue]{settings.Name}[/]"); |         AnsiConsole.MarkupLine($"Hello, [blue]{settings.Name}[/]"); | ||||||
|         return 0; |         return 0; | ||||||
|   | |||||||
| @@ -55,7 +55,7 @@ in the previous step. | |||||||
| ```csharp | ```csharp | ||||||
| public class AddPackageCommand : Command<AddPackageSettings> | public class AddPackageCommand : Command<AddPackageSettings> | ||||||
| { | { | ||||||
|     public override int Execute(CommandContext context, AddPackageSettings settings) |     public override int Execute(CommandContext context, AddPackageSettings settings, CancellationToken cancellationToken) | ||||||
|     { |     { | ||||||
|         // Omitted |         // Omitted | ||||||
|         return 0; |         return 0; | ||||||
| @@ -64,7 +64,7 @@ public class AddPackageCommand : Command<AddPackageSettings> | |||||||
|  |  | ||||||
| public class AddReferenceCommand : Command<AddReferenceSettings> | public class AddReferenceCommand : Command<AddReferenceSettings> | ||||||
| { | { | ||||||
|     public override int Execute(CommandContext context, AddReferenceSettings settings) |     public override int Execute(CommandContext context, AddReferenceSettings settings, CancellationToken cancellationToken) | ||||||
|     { |     { | ||||||
|         // Omitted |         // Omitted | ||||||
|         return 0; |         return 0; | ||||||
|   | |||||||
| @@ -33,7 +33,7 @@ internal sealed class FileSizeCommand : Command<FileSizeCommand.Settings> | |||||||
|         public bool IncludeHidden { get; init; } |         public bool IncludeHidden { get; init; } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     public override int Execute([NotNull] CommandContext context, [NotNull] Settings settings) |     public override int Execute(CommandContext context, Settings settings, CancellationToken cancellationToken) | ||||||
|     { |     { | ||||||
|         var searchOptions = new EnumerationOptions |         var searchOptions = new EnumerationOptions | ||||||
|         { |         { | ||||||
|   | |||||||
| @@ -61,7 +61,7 @@ in the previous step. | |||||||
| ```csharp | ```csharp | ||||||
| public class AddPackageCommand : Command<AddPackageSettings> | public class AddPackageCommand : Command<AddPackageSettings> | ||||||
| { | { | ||||||
|     public override int Execute(CommandContext context, AddPackageSettings settings) |     public override int Execute(CommandContext context, AddPackageSettings settings, CancellationToken cancellationToken) | ||||||
|     { |     { | ||||||
|         // Omitted |         // Omitted | ||||||
|         return 0; |         return 0; | ||||||
| @@ -70,7 +70,7 @@ public class AddPackageCommand : Command<AddPackageSettings> | |||||||
|  |  | ||||||
| public class AddReferenceCommand : Command<AddReferenceSettings> | public class AddReferenceCommand : Command<AddReferenceSettings> | ||||||
| { | { | ||||||
|     public override int Execute(CommandContext context, AddReferenceSettings settings) |     public override int Execute(CommandContext context, AddReferenceSettings settings, CancellationToken cancellationToken) | ||||||
|     { |     { | ||||||
|         // Omitted |         // Omitted | ||||||
|         return 0; |         return 0; | ||||||
|   | |||||||
| @@ -40,7 +40,7 @@ The following example validates the exit code and terminal output of a `Spectre. | |||||||
|             _console = console; |             _console = console; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         public override int Execute(CommandContext context) |         public override int Execute(CommandContext context, CancellationToken cancellationToken) | ||||||
|         { |         { | ||||||
|             _console.WriteLine("Hello world."); |             _console.WriteLine("Hello world."); | ||||||
|             return 0; |             return 0; | ||||||
| @@ -78,7 +78,7 @@ public sealed class InteractiveCommandTests | |||||||
|             _console = console; |             _console = console; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         public override int Execute(CommandContext context) |         public override int Execute(CommandContext context, CancellationToken cancellationToken) | ||||||
|         { |         { | ||||||
|             var fruits = _console.Prompt( |             var fruits = _console.Prompt( | ||||||
|                 new MultiSelectionPrompt<string>() |                 new MultiSelectionPrompt<string>() | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| { | { | ||||||
|   "$schema": "http://json.schemastore.org/global", |   "$schema": "http://json.schemastore.org/global", | ||||||
|   "sdk": { |   "sdk": { | ||||||
|     "version": "9.0.305", |     "version": "9.0.306", | ||||||
|     "rollForward": "latestFeature" |     "rollForward": "latestFeature" | ||||||
|   } |   } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ | |||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <ItemGroup> |   <ItemGroup> | ||||||
|     <PackageVersion Include="IsExternalInit" Version="1.0.3" /> |     <PackageVersion Include="IsExternalInit" Version="1.0.3" /> | ||||||
|     <PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="9.0.9" /> |     <PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="9.0.10" /> | ||||||
|     <PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.0" /> |     <PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.0" /> | ||||||
|     <PackageVersion Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" Version="8.0.0" /> |     <PackageVersion Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" Version="8.0.0" /> | ||||||
|     <PackageVersion Include="MinVer" PrivateAssets="All" Version="6.0.0" /> |     <PackageVersion Include="MinVer" PrivateAssets="All" Version="6.0.0" /> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user