diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 7c2d7fdc..f00d4981 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -1,12 +1,18 @@ -{ - "version": 1, - "isRoot": true, - "tools": { - "cake.tool": { - "version": "0.35.0", - "commands": [ - "dotnet-cake" - ] - } - } +{ + "version": 1, + "isRoot": true, + "tools": { + "cake.tool": { + "version": "0.35.0", + "commands": [ + "dotnet-cake" + ] + }, + "gitversion.tool": { + "version": "5.5.1", + "commands": [ + "dotnet-gitversion" + ] + } + } } \ No newline at end of file diff --git a/Makefile b/Makefile index 0dc3cf94..7f62b978 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ NAME ?= ocelot build: - mono --version + dotnet tool restore --tool-manifest ./.config/dotnet-tools.json && dotnet cake --verbosity=diagnostic build_and_run_tests: ./build.sh --target=RunTests