Steeltoe developer tool collection
Перейти к файлу
Chris Cheetham 8bb0ec1af6 Finished initial implementation of add-service 2018-08-14 10:42:59 -04:00
config Fixes commandline extensions version config typo 2018-08-09 17:39:26 -04:00
feature Finished initial implementation of add-service 2018-08-14 10:42:59 -04:00
scripts Updates to match coding conventions 2018-08-09 10:33:00 -04:00
src Finished initial implementation of add-service 2018-08-14 10:42:59 -04:00
test Finished initial implementation of add-service 2018-08-14 10:42:59 -04:00
.appveyor.yml Updates AppVeyor configuration for prototype 2018-08-09 09:42:09 -04:00
.gitattributes Initial checkin of tooling solution 2018-07-24 17:16:07 -04:00
.gitignore Ignores vi/vim swap files 2018-08-01 16:34:52 -04:00
.travis.yml Updates Travis configuration for prototype 2018-08-09 09:47:53 -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 Includes links to prototype CI builds 2018-08-09 09:53:03 -04:00
Tooling.sln Implements initial take on a Steeltoe Tooling configuration 2018-08-10 18:21:48 -04:00
versions.props [Finishes #159623790] Consolidates dependency version configuration 2018-08-08 09:46:49 -04:00

README.md

Steeltoe Tooling

Steeltoe developer tool collection.

For documentation, please see the Steeltoe Tooling Wiki.

Latest Builds

Platform Branch Status
Windows master AppVeyor master status
Windows prototype AppVeyor prototype status
Linux/OS X master Travis CI master status
Linux/OS X prototype Travis CI prototype status

Developer Chores

Unit Testing

Run a single unit test suite:

> dotnet test test/<project>

Run all unit test suites:

> scripts/unit-test

Feature Testing

Run a single feature test suite:

> dotnet test feature/<project>

Run all feature test suites:

> scripts/feature-test

Install into .NET Global Tools

Install:

> dotnet pack
> dotnet tool install --global Steeltoe.Tooling.DotnetCli --add-source src/Steeltoe.Tooling.DotnetCli/bin/Debug 

Uninstall:

> dotnet tool uninstall --global Steeltoe.Tooling.DotnetCli