Home › Forums › Software Development › Add Libraries to work with .NET › Reply To: Add Libraries to work with .NET
Hi Anders,
Has the
more comprehensive post on how to set up a C# project
been posted or is it still in the works?
Like others, I am running into a lot of issues with the SDK WPF sample and attempts at new barebones WPF projects where Visual Studio 2013 and Blend 2013 are complaining about Tobii.EyeX.Client.Net20.
Trying to keep things simple, I have chosen to follow along by building the sample project to generate x86 versions of:
– EyeXFramework.dll
– Tobii.EyeX.Client.Net20.dll
that are output to the EyeXFramework\bin\x86\Debug folder
and including the x86 version of Tobii.EyeX.Client.dll from the lib\x86 folder
However, even though the sample app will run it still shows the following four errors if I open MainWindow.xaml in VS 2013:
Error 1 Could not load file or assembly ‘Tobii.EyeX.Client.Net20, Version=0.32.384.0, Culture=neutral, PublicKeyToken=70326046dcdce6cb’ or one of its dependencies. The system cannot find the file specified. …\DNetEyeXSDK\TobiiEyeXSdk-DotNet-0.32.384\source\WpfSamples\GazeAwareElements\MainWindow.xaml 63 9 GazeAwareElements
Error 2 Could not load file or assembly ‘Tobii.EyeX.Client.Net20, Version=0.32.384.0, Culture=neutral, PublicKeyToken=70326046dcdce6cb’ or one of its dependencies. The system cannot find the file specified. …\DNetEyeXSDK\TobiiEyeXSdk-DotNet-0.32.384\source\WpfSamples\GazeAwareElements\MainWindow.xaml 72 9 GazeAwareElements
Error 3 Could not load file or assembly ‘Tobii.EyeX.Client.Net20, Version=0.32.384.0, Culture=neutral, PublicKeyToken=70326046dcdce6cb’ or one of its dependencies. The system cannot find the file specified. …\DNetEyeXSDK\TobiiEyeXSdk-DotNet-0.32.384\source\WpfSamples\GazeAwareElements\MainWindow.xaml 81 9 GazeAwareElements
Error 4 Could not load file or assembly ‘Tobii.EyeX.Client.Net20, Version=0.32.384.0, Culture=neutral, PublicKeyToken=70326046dcdce6cb’ or one of its dependencies. The system cannot find the file specified. …\DNetEyeXSDK\TobiiEyeXSdk-DotNet-0.32.384\source\WpfSamples\GazeAwareElements\MainWindow.xaml 95 9 GazeAwareElements
And in a barebones new project the following error appears if I try to add the sample code described in the first two steps on pages 11 and 12 of the Developers guide:
Error 1 Could not load file or assembly ‘Tobii.EyeX.Client.Net20, Version=0.32.384.0, Culture=neutral, PublicKeyToken=70326046dcdce6cb’ or one of its dependencies. The system cannot find the file specified. …\TobiiTest\TobiiTest\MainWindow.xaml 7 13 TobiiTest
Besides checking and double checking that the configuration manager is set to x86, I have also attempted a reboot to make sure that previous attempted builds or experiments have not left another version in memory.
What other kinds of things would cause either a mismatch or load failure of Tobii.EyeX.Client.Net20.dll
Should the x86 versions of these dll’s also work in Blend 2013?
Thanks.