Redpoint.CommandLine 2025.1139.552

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Redpoint.CommandLine --version 2025.1139.552
                    
NuGet\Install-Package Redpoint.CommandLine -Version 2025.1139.552
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Redpoint.CommandLine" Version="2025.1139.552" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Redpoint.CommandLine" Version="2025.1139.552" />
                    
Directory.Packages.props
<PackageReference Include="Redpoint.CommandLine" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Redpoint.CommandLine --version 2025.1139.552
                    
#r "nuget: Redpoint.CommandLine, 2025.1139.552"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Redpoint.CommandLine&version=2025.1139.552
                    
Install Redpoint.CommandLine as a Cake Addin
#tool nuget:?package=Redpoint.CommandLine&version=2025.1139.552
                    
Install Redpoint.CommandLine as a Cake Tool

Redpoint.CommandLine

This library provides APIs for building dependency injected console applications, with both commands and option declarations being dependency injected.

To use this library, first define your command:

internal class SomeAction
{
	public class Options
	{
		public Option<string> SomeOpt = new Option<string>("--opt", "My option description.");

		// Add more fields or properties that use Option<> or Argument<> and they'll be automatically
		// registered to the command line parser.
	}

	public static Command CreateCommand(ICommandBuilder builder)
	{
		return new Command("some-action", "The description of your some-action command.");
	}

	public class CommandInstance : ICommandInstance
	{
        private readonly ILogger<CommandInstance> _logger;
        private readonly Options _options;

        public CommandInstance(
            ILogger<CommandInstance> logger,
            Options options)
        {
            _logger = logger;
            _options = options;
        }

        public Task<int> ExecuteAsync(ICommandInvocationContext context)
        {
            // Example on how to access an option's value.
            var value = context.ParseResult.GetValueForOption(_options.SomeOpt);

            // ... implement your command here ...
            _logger.LogInformation("Hello world!");

            // Return the exit code for the application.
            return Task.FromResult(0);
        }
	}
}

To register and execute commands, in your Program.Main:

// Use the command line builder APIs to build the root command.
var rootCommand = CommandLineBuilder.NewBuilder()
    .AddGlobalRuntimeServices((builder, services) =>
    {
        // Register global runtime services here, such as services.AddLogging(...)
    })
    .SetGlobalExecutionHandler(async (sp, executeCommand) =>
    {
        // Can be used to wrap execution of all commands, such as capturing
        // exceptions and logging them:

        var logger = sp.GetRequiredService<ILogger<Program>>();
        try
        {
            return await executeCommand().ConfigureAwait(true);
        }
        catch (Exception ex)
        {
            logger.LogError(ex, $"Uncaught exception during command execution: {ex}");
            return 1;
        }
    })
    // Add each of your commands like this:
    .AddCommand<SomeAction.CommandInstance, SomeAction.Options>(SomeAction.CreateCommand)
    // Then build the root command to use below.
    .Build("My console application description.");

// Parse and execute the command.
var exitCode = await rootCommand.InvokeAsync(args).ConfigureAwait(false);
await Console.Out.FlushAsync().ConfigureAwait(false);
await Console.Error.FlushAsync().ConfigureAwait(false);
Environment.Exit(exitCode);
throw new BadImageFormatException();
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2025.1141.1424 127 5/21/2025
2025.1140.383 126 5/20/2025
2025.1140.377 135 5/20/2025
2025.1139.983 126 5/19/2025
2025.1139.952 126 5/19/2025
2025.1139.941 126 5/19/2025
2025.1139.855 122 5/19/2025
2025.1139.850 124 5/19/2025
2025.1139.837 126 5/19/2025
2025.1139.811 129 5/19/2025
2025.1139.806 122 5/19/2025
2025.1139.796 126 5/19/2025
2025.1139.729 122 5/19/2025
2025.1139.719 125 5/19/2025
2025.1139.706 135 5/19/2025
2025.1139.694 126 5/19/2025
2025.1139.679 120 5/19/2025
2025.1139.662 127 5/19/2025
2025.1139.638 126 5/19/2025
2025.1139.628 129 5/19/2025
2025.1139.626 129 5/19/2025
2025.1139.619 129 5/19/2025
2025.1139.605 126 5/19/2025
2025.1139.600 128 5/19/2025
2025.1139.583 128 5/19/2025
2025.1139.573 124 5/19/2025
2025.1139.564 124 5/19/2025
2025.1139.552 123 5/19/2025
2025.1139.543 127 5/19/2025
2025.1138.909 127 5/18/2025
2025.1136.150 197 5/16/2025
2025.1135.267 204 5/15/2025
2025.1135.143 208 5/15/2025
2025.1133.453 220 5/13/2025
2025.1133.351 215 5/13/2025
2025.1133.349 211 5/13/2025
2025.1133.347 213 5/13/2025
2025.1130.236 63 5/10/2025
2025.1129.831 94 5/9/2025
2025.1129.346 112 5/9/2025
2025.1129.345 112 5/9/2025
2025.1121.1370 139 5/1/2025
2025.1119.450 142 4/29/2025
2025.1119.436 142 4/29/2025
2025.1119.409 142 4/29/2025
2025.1119.388 142 4/29/2025
2025.1119.360 132 4/29/2025
2025.1119.328 160 4/29/2025
2025.1119.299 144 4/29/2025
2025.1119.287 142 4/29/2025
2025.1116.868 69 4/26/2025
2025.1116.841 72 4/26/2025
2025.1116.444 74 4/26/2025
2025.1115.498 120 4/25/2025
2025.1115.491 119 4/25/2025
2025.1100.365 169 4/10/2025
2025.1100.336 159 4/10/2025
2025.1100.331 160 4/10/2025
2025.1098.108 149 4/8/2025
2025.1093.291 168 4/3/2025
2025.1091.38 148 4/1/2025
2025.1091.26 157 4/1/2025
2025.1090.237 155 3/31/2025
2025.1089.1386 152 3/30/2025
2025.1083.515 404 3/24/2025
2025.1083.408 331 3/24/2025
2025.1083.398 331 3/24/2025
2025.1083.125 335 3/24/2025
2025.1080.41 140 3/21/2025
2025.1075.357 136 3/16/2025
2025.1073.332 133 3/14/2025
2025.1072.541 148 3/13/2025
2025.1072.536 149 3/13/2025
2025.1064.602 212 3/5/2025
2025.1064.546 222 3/5/2025
2025.1062.589 158 3/3/2025
2025.1061.513 114 3/2/2025
2025.1060.490 109 3/1/2025
2025.1059.134 117 2/28/2025
2025.1057.1020 110 2/26/2025
2025.1056.584 105 2/25/2025
2025.1050.282 105 2/19/2025
2025.1050.232 100 2/19/2025
2025.1049.55 110 2/18/2025
2025.1045.285 115 2/14/2025
2025.1043.288 105 2/12/2025
2025.1043.246 99 2/12/2025
2025.1043.197 100 2/12/2025
2025.1043.180 100 2/12/2025
2025.1043.108 100 2/12/2025
2025.1043.38 100 2/12/2025
2025.1043.27 110 2/12/2025
2025.1042.725 99 2/11/2025
2025.1042.690 96 2/11/2025
2025.1042.688 101 2/11/2025
2025.1042.418 106 2/11/2025
2025.1042.215 96 2/11/2025
2025.1042.203 113 2/11/2025
2025.1042.184 104 2/11/2025
2025.1042.142 100 2/11/2025
2025.1042.127 97 2/11/2025
2025.1037.1327 101 2/6/2025
2025.1036.280 108 2/5/2025
2025.1036.55 102 2/5/2025
2025.1035.1387 116 2/4/2025
2025.1031.111 108 1/31/2025
2025.1030.916 115 1/30/2025
2025.1030.895 102 1/30/2025
2025.1030.592 105 1/30/2025
2025.1029.664 89 1/29/2025
2025.1029.632 87 1/29/2025
2025.1029.596 89 1/29/2025
2025.1028.386 95 1/28/2025
2025.1025.723 93 1/25/2025
2025.1025.712 92 1/25/2025
2025.1019.913 96 1/19/2025
2025.1018.374 95 1/18/2025
2025.1018.285 86 1/18/2025
2025.1017.646 91 1/17/2025
2025.1017.379 99 1/17/2025
2025.1016.1370 94 1/16/2025
2025.1016.765 91 1/16/2025
2025.1016.712 93 1/16/2025
2025.1016.550 87 1/16/2025
2025.1016.541 89 1/16/2025
2025.1016.532 93 1/16/2025
2025.1016.325 81 1/16/2025
2025.1016.308 86 1/16/2025
2025.1016.296 82 1/16/2025
2025.1016.237 90 1/16/2025
2025.1016.184 89 1/16/2025
2025.1016.70 88 1/16/2025
2025.1016.6 86 1/16/2025
2025.1015.1438 88 1/16/2025
2025.1015.1437 85 1/16/2025
2025.1015.1411 88 1/15/2025
2025.1015.240 70 1/15/2025
2025.1015.223 66 1/15/2025
2025.1015.183 67 1/15/2025
2025.1014.1342 74 1/14/2025
2025.1014.273 84 1/14/2025
2025.1014.256 86 1/14/2025
2025.1012.440 100 1/12/2025
2025.1012.327 85 1/12/2025
2025.1012.279 90 1/12/2025
2025.1002.636 109 1/2/2025
2025.1001.1435 105 1/2/2025
2025.1001.1397 104 1/1/2025
2025.1001.770 114 1/1/2025
2025.1001.570 116 1/1/2025
2025.1001.558 106 1/1/2025
2025.1001.421 115 1/1/2025
2025.1001.390 109 1/1/2025
2025.1001.234 120 1/1/2025
2025.1001.123 110 1/1/2025
2024.1360.354 101 12/25/2024
2024.1360.60 97 12/25/2024
2024.1360.32 101 12/25/2024
2024.1358.450 108 12/23/2024
2024.1358.359 99 12/23/2024
2024.1358.312 105 12/23/2024
2024.1358.244 102 12/23/2024
2024.1358.120 110 12/23/2024
2024.1348.253 109 12/13/2024
2024.1345.1379 99 12/10/2024
2024.1345.506 102 12/10/2024
2024.1345.379 98 12/10/2024
2024.1345.145 95 12/10/2024
2024.1345.72 102 12/10/2024
2024.1345.69 93 12/10/2024
2024.1345.15 100 12/10/2024
2024.1344.1436 101 12/10/2024
2024.1344.600 111 12/9/2024
2024.1344.411 100 12/9/2024
2024.1340.379 107 12/5/2024
2024.1340.15 108 12/5/2024
2024.1338.786 104 12/3/2024
2024.1338.722 118 12/3/2024
2024.1338.697 107 12/3/2024
2024.1338.639 109 12/3/2024
2024.1338.541 108 12/3/2024
2024.1338.318 99 12/3/2024
2024.1338.298 103 12/3/2024
2024.1338.98 113 12/3/2024
2024.1337.756 109 12/2/2024
2024.1337.634 107 12/2/2024
2024.1337.625 107 12/2/2024
2024.1337.621 110 12/2/2024
2024.1337.594 106 12/2/2024
2024.1337.136 89 12/2/2024
2024.1336.793 109 12/1/2024
2024.1336.773 109 12/1/2024
2024.1336.305 106 12/1/2024
2024.1336.12 112 12/1/2024
2024.1335.1421 106 11/30/2024
2024.1335.1384 107 11/30/2024
2024.1334.1308 102 11/29/2024
2024.1334.764 106 11/29/2024
2024.1334.722 106 11/29/2024
2024.1330.185 104 11/25/2024
2024.1328.505 105 11/23/2024
2024.1328.470 106 11/23/2024
2024.1328.452 105 11/23/2024
2024.1323.910 104 11/18/2024
2024.1323.653 97 11/18/2024
2024.1323.185 108 11/18/2024
2024.1323.49 99 11/18/2024
2024.1322.714 107 11/17/2024
2024.1320.653 104 11/15/2024
2024.1320.619 96 11/15/2024
2024.1320.601 105 11/15/2024
2024.1320.159 100 11/15/2024
2024.1320.98 100 11/15/2024
2024.1320.2 98 11/15/2024
2024.1319.1431 106 11/15/2024
2024.1319.1335 99 11/14/2024
2024.1317.631 108 11/12/2024
2024.1316.330 120 11/11/2024
2024.1311.540 113 11/6/2024
2024.1306.225 108 11/1/2024
2024.1306.199 108 11/1/2024
2024.1306.171 105 11/1/2024
2024.1306.117 104 11/1/2024
2024.1305.506 99 10/31/2024
2024.1305.502 111 10/31/2024
2024.1305.465 105 10/31/2024
2024.1305.442 99 10/31/2024
2024.1305.399 109 10/31/2024
2024.1299.1070 99 10/25/2024
2024.1289.621 105 10/15/2024
2024.1289.338 103 10/15/2024
2024.1277.836 109 10/5/2024
2024.1277.711 103 10/3/2024
2024.1277.695 104 10/3/2024
2024.1270.409 114 9/26/2024
2024.1269.621 129 9/25/2024
2024.1269.619 114 9/25/2024
2024.1269.605 116 9/25/2024
2024.1242.282 123 8/29/2024
2024.1242.261 105 8/29/2024
2024.1242.233 126 8/29/2024
2024.1238.829 123 8/25/2024
2024.1238.327 146 8/25/2024
2024.1225.297 135 8/12/2024
2024.1205.140 91 7/23/2024
2024.1204.110 128 7/22/2024
2024.1204.62 94 7/22/2024
2024.1190.491 126 7/8/2024
2024.1177.305 130 6/25/2024
2024.1168.700 109 6/16/2024
2024.1168.649 123 6/16/2024
2024.1168.535 109 6/16/2024
2024.1167.643 118 6/15/2024
2024.1166.989 129 6/14/2024
2024.1166.818 101 6/14/2024
2024.1166.535 104 6/14/2024
2024.1166.422 121 6/14/2024
2024.1166.362 107 6/14/2024
2024.1166.360 106 6/14/2024
2024.1165.1212 112 6/13/2024
2024.1165.1160 102 6/13/2024
2024.1165.1019 116 6/13/2024
2024.1165.978 121 6/13/2024
2024.1165.920 116 6/13/2024
2024.1165.908 102 6/13/2024
2024.1165.873 101 6/13/2024
2024.1165.830 124 6/13/2024
2024.1165.806 130 6/13/2024
2024.1165.794 103 6/13/2024
2024.1165.792 117 6/13/2024
2024.1165.761 116 6/13/2024
2024.1165.743 117 6/13/2024
2024.1165.735 100 6/13/2024
2024.1165.713 124 6/13/2024
2024.1165.640 111 6/13/2024
2024.1165.574 120 6/13/2024
2024.1165.466 117 6/13/2024
2024.1165.417 135 6/13/2024
2024.1165.392 120 6/13/2024
2024.1164.341 94 6/12/2024
2024.1155.941 128 6/3/2024
2024.1140.783 128 5/19/2024
2024.1140.692 128 5/19/2024
2024.1140.673 108 5/19/2024
2024.1129.506 132 5/8/2024
2024.1128.831 146 5/7/2024
2024.1124.465 103 5/3/2024
2024.1123.1162 99 5/2/2024
2024.1123.1117 83 5/2/2024
2024.1123.1050 92 5/2/2024
2024.1122.352 130 5/1/2024
2024.1122.233 116 5/1/2024
2024.1115.1101 139 4/24/2024
2024.1115.1048 112 4/24/2024
2024.1115.932 121 4/24/2024
2024.1115.858 108 4/24/2024
2024.1115.665 118 4/24/2024
2024.1115.648 138 4/24/2024
2024.1115.591 112 4/24/2024
2024.1101.390 119 4/10/2024
2024.1100.741 137 4/9/2024
2024.1099.526 115 4/8/2024
2024.1099.466 121 4/8/2024
2024.1098.573 136 4/7/2024
2024.1095.977 118 4/4/2024
2024.1095.847 111 4/4/2024
2024.1095.604 119 4/4/2024
2024.1095.485 132 4/4/2024
2024.1094.930 114 4/3/2024
2024.1094.910 130 4/3/2024
2024.1094.387 130 4/3/2024
2024.1094.313 129 4/3/2024
2024.1093.520 127 4/2/2024
2024.1092.240 121 4/1/2024
2024.1089.1425 133 3/29/2024
2024.1089.983 118 3/29/2024
2024.1089.942 112 3/29/2024
2024.1089.2 118 3/29/2024
2024.1088.1343 143 3/28/2024
2024.1088.1139 134 3/28/2024
2024.1088.875 128 3/28/2024
2024.1088.700 148 3/28/2024
2024.1088.603 135 3/28/2024
2024.1088.590 108 3/28/2024
2024.1088.575 138 3/28/2024
2024.1088.561 139 3/28/2024
2024.1088.506 119 3/28/2024
2024.1088.18 118 3/28/2024
2024.1087.1181 151 3/27/2024
2024.1087.1173 118 3/27/2024
2024.1087.1143 138 3/27/2024
2024.1087.1108 122 3/27/2024
2024.1087.950 154 3/27/2024
2024.1087.939 129 3/27/2024
2024.1087.252 130 3/27/2024
2024.1070.736 150 3/10/2024
2024.1049.1437 160 2/19/2024
2024.1036.571 146 2/5/2024
2024.1036.508 111 2/5/2024
2024.1032.1204 123 2/1/2024
2024.1032.1133 111 2/1/2024
2024.1032.1122 127 2/1/2024
2024.1032.1071 107 2/1/2024
2024.1032.940 129 2/1/2024
2024.1031.912 124 1/31/2024
2024.1031.893 106 1/31/2024
2024.1031.851 125 1/31/2024
2024.1031.829 120 1/31/2024
2024.1031.386 135 1/31/2024
2024.1031.318 130 1/31/2024
2024.1017.460 138 1/17/2024
2024.1017.420 126 1/17/2024
2024.1017.163 126 1/17/2024
2024.1016.414 331 1/16/2024
2024.1012.167 147 1/12/2024
2024.1011.406 129 1/11/2024
2024.1010.315 136 1/10/2024
2023.1358.326 166 12/24/2023
2023.1351.473 157 12/17/2023
2023.1351.445 128 12/17/2023
2023.1351.432 147 12/17/2023
2023.1350.478 128 12/16/2023
2023.1344.600 136 12/10/2023
2023.1344.529 146 12/10/2023
2023.1339.582 166 12/5/2023
2023.1338.1072 137 12/4/2023
2023.1336.844 140 12/2/2023
2023.1335.378 147 12/1/2023
2023.1335.236 144 12/1/2023
2023.1335.203 140 12/1/2023
2023.1334.814 134 11/30/2023
2023.1332.652 130 11/28/2023
2023.1332.622 144 11/28/2023
2023.1332.524 159 11/28/2023
2023.1331.1073 122 11/27/2023
2023.1331.423 130 11/27/2023
2023.1328.513 140 11/24/2023
2023.1327.985 148 11/23/2023
2023.1325.593 141 11/21/2023
2023.1325.551 143 11/21/2023
2023.1325.529 133 11/21/2023