Browse Source

Bugfix URI was wrong (missing "/"), when compiled with roslyn from CTP6 it did not work

pull/662/head
jogibear9988 11 years ago
parent
commit
25481b6c87
  1. 2
      src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/themes/VersionedAssemblyResourceDictionary.cs

2
src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/themes/VersionedAssemblyResourceDictionary.cs

@ -31,7 +31,7 @@ namespace ICSharpCode.WpfDesign.Designer.themes @@ -31,7 +31,7 @@ namespace ICSharpCode.WpfDesign.Designer.themes
static VersionedAssemblyResourceDictionary()
{
var nm = typeof(VersionedAssemblyResourceDictionary).Assembly.GetName();
_uriStart = string.Format( @"{0};v{1};component/", nm.Name, nm.Version);
_uriStart = string.Format( @"/{0};v{1};component/", nm.Name, nm.Version);
_subLength = "ICSharpCode.WpfDesign.Designer.".Length;
}

Loading…
Cancel
Save