Browse Source

fix wrong declaration info in KnownInfo

pull/252/head
Siegfried Pammer 14 years ago
parent
commit
4b1622e55e
  1. 2
      ILSpy.BamlDecompiler/Ricciolo.StylesExplorer.MarkupReflection/KnownInfo.cs
  2. 2
      ILSpy.BamlDecompiler/Ricciolo.StylesExplorer.MarkupReflection/XmlBamlReader.cs

2
ILSpy.BamlDecompiler/Ricciolo.StylesExplorer.MarkupReflection/KnownInfo.cs

@ -58,7 +58,7 @@ namespace Ricciolo.StylesExplorer.MarkupReflection @@ -58,7 +58,7 @@ namespace Ricciolo.StylesExplorer.MarkupReflection
KnownTypeTable[9] = new TypeDeclaration(resolver, "Animatable", "System.Windows.Media.Animaton", 1);
KnownTypeTable[10] = new TypeDeclaration(resolver, "AnimationClock", "System.Windows.Media.Animation", 1);
KnownTypeTable[11] = new TypeDeclaration(resolver, "AnimationTimeline", "System.Windows.Media.Animation", 1);
KnownTypeTable[12] = new TypeDeclaration(resolver, "Application", "System.Net.Mime", 3);
KnownTypeTable[12] = new TypeDeclaration(resolver, "Application", "System.Windows", 0);
KnownTypeTable[13] = new TypeDeclaration(resolver, "ArcSegment", "System.Windows.Media", 1);
KnownTypeTable[14] = new TypeDeclaration(resolver, "ArrayExtension", "System.Windows.Markup", 0);
KnownTypeTable[15] = new TypeDeclaration(resolver, "AxisAngleRotation3D", "System.Windows.Media.Media3D", 1);

2
ILSpy.BamlDecompiler/Ricciolo.StylesExplorer.MarkupReflection/XmlBamlReader.cs

@ -1590,7 +1590,7 @@ namespace Ricciolo.StylesExplorer.MarkupReflection @@ -1590,7 +1590,7 @@ namespace Ricciolo.StylesExplorer.MarkupReflection
return type;
}
throw new NotSupportedException();
throw new NotSupportedException("Type '" + name + "' not found!");
}
internal string GetAssembly(short identifier)

Loading…
Cancel
Save