If the share is located between the Silverlight and the WPF project, itβs easier for me to put the file in the silverlight project and link it to the WPF project than to do the opposite.
In other words, the file is moved to the silverlight project, not the WPF project, and then βlinkedβ to the WPF project.
Also remember when a file is referencing WPF as it is linked, you need to change the link url as if it is in the root, for example:
<ResourceDictionary Source="pack://application:,,,/AssemblyName;component/DictionaryName.xaml" />
Deleting the folder above works, the uri below does NOT work:
<ResourceDictionary Source="pack://application:,,,/AssemblyName;component/FOLDER/DictionaryName.xaml" />
Martin Lottering
source share