I'm trying to use MEF in Windows 8.

In order to build up my AssemblyCatalog for the container, I need a reference to the assembly. In the past, I would have just done this:

var catalog = new AssemblyCatalog(typeof(App).Assembly);

Mysteriously, the Assembly property no longer exists on the Type object. Anybody know of a good work around? Is there another way to get the assembly? I could load it using Assembly.Load, but I would need the name of the assembly. I can't get that from the type either.

Is using a DirectoryCatalog a possible alternate? I don't like the idea, but I'll do what I need to.

link|improve this question

1  
The assembly tag is for low level programming, not .NET assemblies. – harold Sep 30 '11 at 14:56
@harold: Thanks for clarifying. – Josh G Sep 30 '11 at 15:03
feedback

2 Answers

up vote 4 down vote accepted
using System.Reflection;

Use type.GetTypeInfo().Assembly instead.

link|improve this answer
Intellisense is not picking up GetTypeInfo() on typeof(App). Not sure what the deal is now. – Josh G Sep 30 '11 at 15:08
1  
Quote from documentation clears it up: "You can retrieve the TypeInfo object by calling the System.Reflection.IntrospectionExtensions.GetTypeInfo(System.Type) method, which is an extension method for Type." – Josh G Sep 30 '11 at 15:11
1  
Works like a charm once I add using System.Reflection; so I can reference the extension function. – Josh G Sep 30 '11 at 15:13
Actually, you found the answer before me :) – Roman D. Boiko Sep 30 '11 at 15:18
feedback

Found the answer after some digging through the loads of documentation on building metro style apps.

http://msdn.microsoft.com/en-us/library/windows/apps/br230302%28v=VS.85%29.aspx#reflection

The reflection aspects of the Type class have been moved to a new object called System.Reflection.TypeInfo. You can get an instance of this class by calling type.GetTypeInfo().

So to get the Assembly: typeof(App).GetTypeInfo().Assembly.

Requires using System.Reflection;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.