Description
Hello. I am wondering if there is a way to get the command line utilities while installing using nuget.
Currently I have a system where I clone the repo, and do something along these lines.
bash build.sh -release
dotnet publish -c Release --no-build machinelearning/src/Microsoft.ML.Console --output mlnet
Then in the resulting folder I have the following files, MML.dll, MML.pdb, MML.xml, MML.runtimeconfig.json, MML.deps.json and many other dll files of the library.
I use this by doing dotnet mlnet/MML.dll
I am wondering if it is possible to use nuget to install the dotnet machine learning package and have the same files available?
I have tried installing https://www.nuget.org/packages/Microsoft.ML/ and https://www.nuget.org/packages/mlnet/.
The first does not have the same MML.dll file I would use, and the second is a command line tool but has a totally different API.