Jump to content
Software FX Community

Assembly Names


Mick

Recommended Posts

Noneof the assemblies for ChartFX loaded into my AppDomain have theirMainifestModule.Name or ManifestModule.FullyQualifiedName. Is this donefor a reason? I use a dynamic plugin architecture and rely on thesefields for other dlls in my system (I have to do this to have variousdlls in directories separate from my .exe file), and it would be niceto not have to code in an exception for ChartFX.

Thank you,

Mick

post-5155-13922412818234_thumb.jpg

Link to comment
Share on other sites

I tried something like this

  Assembly a1 = typeof(System.Windows.Controls.Button).Assembly;

  Module m1 = a1.ManifestModule;

  string f1 = m1.FullyQualifiedName;

  Assembly a2 = typeof(ChartFX.WPF.Chart).Assembly;

  Module m2 = a2.ManifestModule;

  string f2 = m2.FullyQualifiedName;

And got the ManifestModule Name and FullQuallifiedName in the ChartFX assemblies to be very similar to the .NET framework assemblies, with the main difference being we are normally not on the GAC

Can you describe in detail what to do you get with our assemblies? Can you post a small sample app that exhibits this behavior?

JuanC

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...