Hi!
I am using a third-party WPF controls library, and trying to track down some bugs. However, if I try to use Reflector on this library, at runtime the application fails during the loading of the Baml. I get the following exception:
Fehler bei Objektinitialisierung (ISupportInitialize.EndInit). Die Satellitenassembly mit dem Namen xxx.resources.dll, PublicKeyToken= für die Fallbackkultur en-US konnte entweder nicht gefunden oder nicht geladen werden. Dies ist normalerweise ein Setup-Problem. Versuchen Sie, die Anwendung neu zu installieren oder zu reparieren. Fehler in Objekt "xxx.Controls.yyy" in Markupdatei "zzz;component/zzz.xaml", Zeile 85, Position 15.
The inner exception is:
Die Satellitenassembly mit dem Namen xxx.resources.dll, PublicKeyToken= für die Fallbackkultur en-US konnte entweder nicht gefunden oder nicht geladen werden. Dies ist normalerweise ein Setup-Problem. Versuchen Sie, die Anwendung neu zu installieren oder zu reparieren.
with the inner exceptions stacktrace
bei System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents)
bei System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents)
bei System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents)
bei System.Resources.ResourceManager.GetObject(String name, CultureInfo culture, Boolean wrapUnmanagedMemStream)
bei System.Resources.ResourceManager.GetStream(String name, CultureInfo culture)
bei System.Windows.SystemResources.ResourceDictionaries.LoadDictionary(Assembly assembly, String assemblyName, String resourceName, Boolean isTraceEnabled)
bei System.Windows.SystemResources.ResourceDictionaries.LoadThemedDictionary(Boolean isTraceEnabled)
bei System.Windows.SystemResources.FindDictionaryResource(Object key, Type typeKey, ResourceKey resourceKey, Boolean isTraceEnabled, Boolean allowDeferredResourceReference, Boolean mustReturnDeferredResourceReference, Boolean& canCache)
bei System.Windows.SystemResources.FindResourceInternal(Object key, Boolean allowDeferredResourceReference, Boolean mustReturnDeferredResourceReference)
bei System.Windows.StyleHelper.GetThemeStyle(FrameworkElement fe, FrameworkContentElement fce)
bei System.Windows.FrameworkElement.UpdateThemeStyleProperty()
bei System.Windows.FrameworkElement.OnInitialized(EventArgs e)
bei System.Windows.FrameworkElement.TryFireInitialized()
bei System.Windows.FrameworkElement.EndInit()
bei System.Windows.Markup.BamlRecordReader.ElementEndInit(Object& element)
Translated: The satellite assembly with the name xxx.resources.dll, PublicKeyToken= [yes, the token is empty] for the fallback culture en-US could either not be found or not be loaded.
The reference itself is to xxx.dll; both the Dll and the resources Dll are in the GAC. I tried also adding the resources Dll as reference and have Reflector decompile both of them, but it makes no difference.
I am using a third-party WPF controls library, and trying to track down some bugs. However, if I try to use Reflector on this library, at runtime the application fails during the loading of the Baml. I get the following exception:
The inner exception is:
with the inner exceptions stacktrace
Translated: The satellite assembly with the name xxx.resources.dll, PublicKeyToken= [yes, the token is empty] for the fallback culture en-US could either not be found or not be loaded.
The reference itself is to xxx.dll; both the Dll and the resources Dll are in the GAC. I tried also adding the resources Dll as reference and have Reflector decompile both of them, but it makes no difference.