Comments
Sort by recent activity
I've also submitted a support request for this: F0049951. No need to further discuss it here I guess. I'll post about if the solution works once it's done.
- Wout / comments
I've also submitted a support request for this: F0049951. No need to further discuss it here I guess. I'll post about if the solution works once it's done.
- Wout
Nope, they are not in the GAC. Either way it is incorrect behavior to randomly switch references.
- Wout / comments
Nope, they are not in the GAC. Either way it is incorrect behavior to randomly switch references.
- Wout
Hi,
In my search path it has Silverlight 4, but it is picking up Silverlight 5 dlls instead. Seems to be a bug (using SmartAssembly 6.1, Have both Silverlight 4 and Silverlight 5 beta installed).
<DependenciesSearchPaths>
<SearchPath>C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\Silverlight\v4.0</SearchPath>
</DependenciesSearchPaths>
How can it find the Silverlight 5 dll's? They are in C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\Silverlight\v5.0, and I didn't specify that they were there.
I just tried using the assembly MandatoryPath xml feature, but it's still picking up the SL 5 assemblies:
<Assembly AssemblyName="mscorlib" MandatoryPath="C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\Silverlight\v4.0\mscorlib.dll">
<Merging />
</Assembly>
<Assembly AssemblyName="System" MandatoryPath="C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\Silverlight\v4.0\System.dll">
<Merging />
</Assembly>
<Assembly AssemblyName="System.Windows" MandatoryPath="C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\Silverlight\v4.0\System.Windows.dll">
<Merging />
</Assembly>
- Wout / comments
Hi,
In my search path it has Silverlight 4, but it is picking up Silverlight 5 dlls instead. Seems to be a bug (using SmartAssembly 6.1, Have both Silverlight 4 and Silverlight 5 beta installed).
<...