Browse Source

Tell WPF we don't have theme-specific resources so that it doesn't try to load missing assemblies.

newNRvisualizers
Daniel Grunwald 13 years ago
parent
commit
709f13bfa5
  1. 2
      src/AddIns/DisplayBindings/AvalonEdit.AddIn/Configuration/AssemblyInfo.cs
  2. 2
      src/Main/ICSharpCode.SharpDevelop.Widgets/Project/Configuration/AssemblyInfo.cs

2
src/AddIns/DisplayBindings/AvalonEdit.AddIn/Configuration/AssemblyInfo.cs

@ -20,6 +20,6 @@ using System.Windows; @@ -20,6 +20,6 @@ using System.Windows;
[assembly: AssemblyCulture("")]
[assembly: ThemeInfo(
ResourceDictionaryLocation.SourceAssembly, //where theme specific resource dictionaries are located
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
)]

2
src/Main/ICSharpCode.SharpDevelop.Widgets/Project/Configuration/AssemblyInfo.cs

@ -17,7 +17,7 @@ using System.Windows.Markup; @@ -17,7 +17,7 @@ using System.Windows.Markup;
[assembly: AssemblyCulture("")]
[assembly: ThemeInfo(
ResourceDictionaryLocation.SourceAssembly, //where theme specific resource dictionaries are located
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
)]

Loading…
Cancel
Save