I'm creating an application silverlight 5 using prism 4 and when I'm running the bootstrapper using UnityBootstrapper then I have the next error:

Could not load file or assembly 'System.Windows.Controls, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

This error in the ConfigureRegionAdapterMappings method:

    protected override RegionAdapterMappings ConfigureRegionAdapterMappings()
    {
        // Call base method
        var mappings = base.ConfigureRegionAdapterMappings(); <-- I get the error here!
        if (mappings == null) return null;

        // Add custom mappings

        // Set return value
        return mappings;
    }

The strange thing is if I change my project to silverlight 4 then it is working fine (?). Could you please help me?

Thanks!

link|improve this question

found a solution? – LueTm Nov 23 '11 at 5:18
This month (Januar 2012) will Prism 4.1 be released, which includes some bug fixes and support for Silverlight 5. – Jehof Jan 20 at 10:44
feedback

1 Answer

up vote 3 down vote accepted

this is because prism 4 libraries are targeting silverlight 4. you have to download the source code of prism and have to change all silverlight project references to silverlight5 and the recompile it and then set references to new binaries

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.