Created
July 23, 2019 20:58
-
-
Save baronfel/80f49ecb93ebacb84ca840fca7a12fc2 to your computer and use it in GitHub Desktop.
worked example of .net core 3 preview 7 local tool manifest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"isRoot" :true, | |
"tools": { | |
"paket": { | |
"version": "5.215.0", | |
"commands": [ | |
"paket" | |
] | |
} | |
} | |
} |
I bet the restore targets doesn't know how to handle this though...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
add this file to the root of your repo. now from that repo root (as long as .net core 3 preview 7 is the active .net sdk) you can do
dotnet tool restore
to restore the tools anddotnet paket
to invoke the local tool.