Hi,
I was using the versioning tool to upgrade my project to the latest IG controls;
However, I get lot's of errors when rebuild in VS:
Error 7 Could not load file or assembly 'InfragisticsSL4.v11.1, Version=11.1.20111.1004, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb' or one of its dependencies. The system cannot find the file specified. ..\App.xaml 1 1 ProjectName
Total 100 errors, all the same, different pages
I tried to copy the *.dlls into my solution folder and make all the referencing from it, but still the same
Please help, I need fix for this asap...
Thanks
OK, I started from scratch on a new project;
This is what I did:
Created new Silverlight Business Application
From within Expression Blend, added XamGrid control -> it placed 10.3 control
project rebuild OK
Started version utility and converted the project
Same error is occurring
I am expecting some idea to fix this issues...
Hi Darrell,
Thank you for the fast reply!
Yes, my project has xml namespaces like:
xmlns:igOB="clr-namespace:Infragistics.Controls.Menus;assembly=InfragisticsSL4.Controls.Menus.XamOutlookBar.v11.1"I both changed this to: xmlns:igOB="http://schemas.infragistics.com/xaml" and deleted all bin/obj projects folder, but with no luck!Still the same number of errors;I also reverted the code when all controls were 10.3, and rebuilt it successfully;Then re-applied the versioning tool, with option to reference the dll's from my External folder in project structureAny other idea?Do I need to manually add InfragisticsSL4.v11.1 to GAC?TIA
Without being able to see the project:
I would first check your xaml pages for your type declarations. Do you have type declarations similar to this:
xmlns
:ig2="clr-namespace:Infragistics;assembly=InfragisticsSL4.Controls.Grids.XamGrid.v11.1"
Where the specific version of the dll is in the name? If so you should probably move over to using the schema based name system, as this takes out the versioning info from those tags.
:ig
=http://schemas.infragistics.com/xaml
Other then that I would delete your bin and obj folders below your project and try rebuilding.