I’ve install Silverlight Toolkit from Nuget, but when I tried to run the project, it throws me one error which tells me:
{System.IO.FileNotFoundException: Could not load file or assembly
‘System.Windows.Controls.Toolkit.Internals, Version=4.0.5.0,
Culture=neutral, PublicKeyToken=2c5c654d367bf4a7’ or one of its
dependencies. The system cannot find the file specified. File name:
‘System.Windows.Controls.Toolkit.Internals, Version=4.0.5.0,
Culture=neutral, PublicKeyToken=2c5c654d367bf4a7’}
So, I added this assembly in my project, and also is throwing me the error.
I start to think if I have to modify a nuget package or something like that.
Any suggestion is welcome.
For whatever reason, the
System.Windows.Controls.Toolkit.Internals.dllis missing from theSilverlight Toolkit CoreNuGet package. I ended up downloading the toolkit zip archive (Silverlight releases page on CodePlex), extracting the assembly locally, and adding a reference to it to my Silverlight project. After that, all was well.