Steeltoe developer tool collection
Перейти к файлу
Chris Cheetham fa8741a9ed Document how to contribute to project 2018-07-31 09:02:18 -04:00
steeltoe Initial checkin of tooling solution 2018-07-24 17:16:07 -04:00
.gitattributes Initial checkin of tooling solution 2018-07-24 17:16:07 -04:00
.gitignore Ignore Visual Studio Code state 2018-07-31 09:00:05 -04:00
CONTRIBUTING.md Document how to contribute to project 2018-07-31 09:02:18 -04:00
LICENSE Initial commit 2018-07-24 11:40:30 -04:00
README.md Initial checkin of tooling solution 2018-07-24 17:16:07 -04:00
Tooling.sln Document how to contribute to project 2018-07-31 09:02:18 -04:00

README.md

Steeltoe Developer Tools

Install/Uninstall into Global Tools

Install:

> dotnet pack --output ./
> dotnet tool install -g steeltoe --add-source ./

After installing, you can run the steeltoe command from a commandline:

> steeltoe -h
Steeltoe Developer Tools

Usage: steeltoe [options] [command]

Options:
  -?|-h|--help  Show help information

Commands:
  doctor        Health check for your Steeltoe development environment

Run 'steeltoe [command] --help' for more information about a command.

Uninstall:

> dotnet tool uninstall -g steeltoe

Running from within this Project

Alternatively, you can run directly from within the project without having to install into Global Tools.

Example: Run with no command or options

> dotnet run --project steeltoe

Example: Run a command

> dotnet run --project steeltoe doctor

Example: Run a command options (note "--" delimiter)

> dotnet run --project steeltoe -- doctor -h