Closed
Description
System information
- OS version/distro: all
- .NET Version (eg., dotnet --info): any
Issue
-
What did you do?
Create a .NET Core console project that references the latest version ofMicrosoft.ML.TensorFlow
. -
What happened?
I don't get a reference to theMicrosoft.ML.TensorFlow.dll
. I only get a reference toDnnAnalyzer.dll
-
What did you expect?
I expected to get a reference toMicrosoft.ML.TensorFlow.dll
so I could call methods in it.
Notes
The reason this happens is because we are including the DnnAnalyzer.dll
in the lib\netcoreapp2.0
directory of the Microsoft.ML.TensorFlow
nuget package:
NuGet only picks assets from 1 of these folders. And since my app is .NET Core, it only picks the assemblies from the lib\netcoreapp2.0
directory.