commanddotnet

(β˜… 615)

A modern framework for building modern CLI apps

  • .dockerignore
  • .editorconfig
  • .gitignore
  • CommandDotNet.sln
  • CommandDotNet.sln.DotSettings
  • CONTRIBUTING.md
  • coverlet.runsettings
  • deploy.sh
  • Directory.Build.props
  • Directory.Packages.props
  • LICENSE
  • mkdocs.yml
  • netlify.toml
  • nuget-icon.png
  • README.md
  • requirements.txt
  • SECURITY.md
  • WARP.md

# Installation Guide

1. Get the code
git clone https://github.com/bilal-fazlani/commanddotnet

Downloads the entire project code from GitHub to your computer.

cd commanddotnet

Moves into the project folder you just downloaded.

2. .NET

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
$ dotnet calculator.dll --help

Type this command into your terminal and run it.

Usage: dotnet calculator.dll [command]

Type this command into your terminal and run it.

Use "dotnet calculator.dll [command] --help" for more information about a command.

Type this command into your terminal and run it.

$ dotnet calculator.dll Add -h

Type this command into your terminal and run it.

Usage: dotnet calculator.dll Add <x> <y>

Type this command into your terminal and run it.

βœ… After dotnet run, check the message or address shown in the terminal.

Pulled directly from this repo's README.

3. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
pip install -r requirements.txt

Installs the Python libraries listed in requirements.txt (or similar).

python <μ‹€ν–‰ν•  파일λͺ…>.py # READMEμ—μ„œ μ •ν™•ν•œ μ‹€ν–‰ 파일λͺ…을 ν™•μΈν•˜μ„Έμš”

Runs the Python script (or module).

βœ… If it runs without errors and prints output in the terminal, it worked.
// repository documentation