You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using System;
#if NET461
using CNTK;
#endif
namespaceTestCntk{classProgram{staticvoidMain(string[]args){
Console.WriteLine("Hello World!");}}}
It doesn't even link to the right library, even though VS displays the NuGet package as a (conditional) dependency and it's definitely restored locally to the machine.
1>Program.cs(3,7,3,11): error CS0246: The type or namespace name 'CNTK' could not be found (are you missing a using directive or an assembly reference?)
The text was updated successfully, but these errors were encountered:
Repro steps: try to create basically a Hello World project using CNTK C# evaluation API:
It doesn't even link to the right library, even though VS displays the NuGet package as a (conditional) dependency and it's definitely restored locally to the machine.
The text was updated successfully, but these errors were encountered: