-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove DnnAnalyzer from the Microsoft.ML.TensorFlow nuget #1029
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks much @yaeldekel ! You're an inspiration to our organization.
@@ -4,7 +4,6 @@ | |||
<OutputType>Exe</OutputType> | |||
<TargetFramework>netcoreapp2.0</TargetFramework> | |||
<AssemblyName>DnnAnalyzer</AssemblyName> | |||
<IncludeInPackage>Microsoft.ML.TensorFlow</IncludeInPackage> | |||
</PropertyGroup> | |||
|
|||
<ItemGroup> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Existing Issue: if you want this project to work on Linux/Mac you also need tensorflow_framework below, similar to
<NativeAssemblyReference Condition="'$(OS)' != 'Windows_NT'" Include="tensorflow_framework" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yaeldekel I think this needs to be updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure fixing this issue is 100% necessary for 0.6
since we aren't going to be shipping DnnAnalyzer in 0.6
.
@@ -4,7 +4,6 @@ | |||
<OutputType>Exe</OutputType> | |||
<TargetFramework>netcoreapp2.0</TargetFramework> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
netcoreapp2.0 [](start = 21, length = 13)
Comment from @eerhardt from previous PR:
This should be netcoreapp2.1. Note that netcoreapp and netstandard are different things. We want netcoreapp2.1 for any and all executables and tests. We want netstandard2.0 for any libraries.
Unrelated to your problem, but if you decide to make changes, why not fix it as well :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer we just nuke this thing altogether and recast it as an ICommand
. It should have been one anyway.
Fixes #1027 .