Building Orcas Projects with Expression Blend 2
Joe & The VB Team has a tip for building Orcas projects with Expression Blend 2. This trick allows Blend2 to build projects using MSBuild 3.5 (the version Orcas uses). This should mean that projects created using Silverlight tools for Orcas will be compatible with Blend2. It does appear to fix the compile errors I was getting before.
Save the following text to '\Program Files\Microsoft Expression\Blend 1.1\Blend.exe.config':
<?xml version ="1.0"?><configuration>
<startup>
<supportedRuntime version="v2.0.50727" safemode="true"/>
<requiredRuntime version="v2.0.50727" safemode="true"/>
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Build.Framework" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-99.9.9.9" newVersion="3.5.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Build.Engine" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-99.9.9.9" newVersion="3.5.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>