"일꾼이 일을 잘하려면 먼저 도구를 갈고 닦아야 한다." - 공자, 『논어』.
첫 장 > 프로그램 작성 > C# | System.CommandLine 라이브러리를 사용하여 명령줄(CLI) 앱 구축

C# | System.CommandLine 라이브러리를 사용하여 명령줄(CLI) 앱 구축

2024-07-31에 게시됨
검색:835

C# | Building a Command-Line (CLI) App using System.CommandLine Library

메모
내 개인 웹사이트에서 다른 게시물을 확인할 수 있습니다: https://hbolajraf.net

소개

이 가이드에서는 C# 및 .NET에서 System.CommandLine 라이브러리를 사용하여 CLI(명령줄 인터페이스) 애플리케이션을 구축하는 방법을 살펴보겠습니다. System.CommandLine은 애플리케이션을 위한 강력하고 기능이 풍부한 명령줄 인터페이스를 만드는 프로세스를 단순화합니다.

전제조건

시작하기 전에 다음이 설치되어 있는지 확인하세요.

  • .NET SDK(버전 5.0 이상)

1단계: 새 콘솔 애플리케이션 생성

dotnet new console -n MyCommandLineApp
cd MyCommandLineApp

2단계: System.CommandLine NuGet 패키지 추가

dotnet add package System.CommandLine --version 2.0.0-beta1.21308.1

3단계: 명령줄 옵션 정의

Program.cs에서 System.CommandLine:
을 사용하여 명령줄 옵션을 정의합니다.

using System.CommandLine;
using System.CommandLine.Invocation;

class Program
{
    static int Main(string[] args)
    {
        var rootCommand = new RootCommand
        {
            new Option("--number", "An integer option"),
            new Option("--flag", "A boolean option"),
            new Argument("input", "A required input argument")
        };

        rootCommand.Handler = CommandHandler.Create((number, flag, input) =>
        {
            // Your application logic goes here
            Console.WriteLine($"Number: {number}");
            Console.WriteLine($"Flag: {flag}");
            Console.WriteLine($"Input: {input}");
        });

        return rootCommand.Invoke(args);
    }
}

4단계: CLI 앱 실행

dotnet run -- --number 42 --flag true "Hello, CLI!"

값을 원하는 값으로 바꾸고 출력을 확인하세요.

5단계: 도움말 텍스트 사용자 정의

더 나은 도움말 텍스트를 위해 옵션 및 인수에 설명을 추가하세요.

var rootCommand = new RootCommand
{
    new Option("--number", "An integer option"),
    new Option("--flag", "A boolean option"),
    new Argument("input", "A required input argument")
};

rootCommand.Description = "A simple CLI app";
rootCommand.Handler = CommandHandler.Create((number, flag, input) =>
{
    Console.WriteLine($"Number: {number}");
    Console.WriteLine($"Flag: {flag}");
    Console.WriteLine($"Input: {input}");
});

다음은 무엇입니까?

C# 및 .NET에서 System.CommandLine 라이브러리를 사용하여 기본 CLI(명령줄 인터페이스) 애플리케이션을 성공적으로 만들었습니다. 특정 요구 사항에 따라 애플리케이션을 사용자 정의하고 확장하세요.
자세한 내용은 공식 문서인 System.CommandLine GitHub

를 참조하세요.
릴리스 선언문 이 기사는 https://dev.to/hbolajraf/c-building-a-command-line-cli-app-using-systemcommandline-library-128e에 복제되어 있습니다. 침해가 있는 경우에는 [email protected]으로 문의하시기 바랍니다. 그것을 삭제하려면
최신 튜토리얼 더>

부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.

Copyright© 2022 湘ICP备2022001581号-3