M
Mark B
i've developed a .net plug-in for importing and exporting MS Project files
into my companies bespoke database. The main system uses reflection to load
the plug-in assemblies at runtime.
The project which handles all the MS Project code seems to take around 16
seconds to load when the reflection code calls the
Assembly.GetExportedTypes() method on it, and through various tracing it is
this command which takes the time.
This only happens when the client PC doesnt have MS Project installed.
Naturally this command will load the types and dependant project references
types, and I'm convinced it has something to do with when it loads the
Interop.MSProject assembly.
Is there anyone who an help with trying to sort this problem?
into my companies bespoke database. The main system uses reflection to load
the plug-in assemblies at runtime.
The project which handles all the MS Project code seems to take around 16
seconds to load when the reflection code calls the
Assembly.GetExportedTypes() method on it, and through various tracing it is
this command which takes the time.
This only happens when the client PC doesnt have MS Project installed.
Naturally this command will load the types and dependant project references
types, and I'm convinced it has something to do with when it loads the
Interop.MSProject assembly.
Is there anyone who an help with trying to sort this problem?