diff --git a/README.md b/README.md index 76b944fa..05891cd7 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ documentation for the project. * [expecto](#expecto) * [Installing](#installing) + * [.Net Core Support](#net-core-support) * [Testing "Hello world"](#testing-hello-world) * [Running tests](#running-tests) * [runTests](#runtests) @@ -86,6 +87,25 @@ with Expecto: ![Sample output from Logary](docs/sample-output-logary.png) +## .Net Core support + +[Expecto has it's own .net core template](https://github.com/MNie/Expecto.Template)! +You could create a base .net core project with expecto. +How to do that? Simply write following lines: + +``` +dotnet new -i Expecto.Template::1.0.0-beta1 +dotnet new expecto -n PROJECT_NAME -o FOLDER_NAME +``` + +How to run it? +``` +dotnet restore +dotnet run +``` + +![How to create expecto template](docs/expecto.gif) + ## Testing "Hello world" The test runner is the test assembly itself. It's recommended to compile your diff --git a/docs/expecto.gif b/docs/expecto.gif new file mode 100644 index 00000000..6bf4c5c5 Binary files /dev/null and b/docs/expecto.gif differ