but finally now!
This commit is contained in:
@@ -5,9 +5,11 @@ namespace Pilz.UI.Telerik.Symbols.Factories;
|
||||
|
||||
internal class ColorFactory : RadSymbolFactory<SymbolsColor>
|
||||
{
|
||||
private Assembly? assembly;
|
||||
|
||||
public override Assembly GetImageResourceAssembly()
|
||||
{
|
||||
return typeof(SymbolsColor).Assembly;
|
||||
return assembly ??= Assembly.Load("Pilz.SymbolPacks.Color");
|
||||
}
|
||||
|
||||
public override string GetImageRessourcePath(SymbolsColor svgImage)
|
||||
|
||||
@@ -5,9 +5,11 @@ namespace Pilz.UI.Telerik.Symbols.Factories;
|
||||
|
||||
internal class FluentFactory : RadSymbolFactory<SymbolsFluent>
|
||||
{
|
||||
private Assembly? assembly;
|
||||
|
||||
public override Assembly GetImageResourceAssembly()
|
||||
{
|
||||
return typeof(SymbolsFluent).Assembly;
|
||||
return assembly ??= Assembly.Load("Pilz.SymbolPacks.Fluent");
|
||||
}
|
||||
|
||||
public override string GetImageRessourcePath(SymbolsFluent svgImage)
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<Version>1.0.6</Version>
|
||||
<Version>1.0.7</Version>
|
||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user