0
votes
2answers
35 views
Load Assembly at runtime and create class instance
I have a assembly. In this assembly I have a class and interface. I need to load this assembly at runtime and want to create an object of the class and also want to use the interfa …
0
votes
0answers
7 views
How to properly add add assembly references to CodeDomProvider
System.CodeDom.Compiler.CompilerParameters parameters = new CompilerParameters();
parameters.GenerateExecutable = true; //Make sure we generate an EXE, not a DLL
parameters.OutputA …
0
votes
0answers
23 views
load Assembly at run time to avoid circular dependency
Hello All,
I have 2 assembly's BALL and DALL, Right now i am taking BALL reference in DALL to do my task, but now i have one more new requirement that i need to load one of DALL cl …
0
votes
0answers
5 views
Managing dynamic domain model w/ DDD context
We have a product where the infrastructure/application and UI code is generic for the most part (some views may have to be tweaked but this is only in spark files). The domain mode …
1
vote
2answers
39 views
add assembly reference dialog
Is there a way to use visual studio's "add assembly reference dialog" (or something similar) in my own application? I need it for dynamic code generation and compilation.
This is …
0
votes
1answer
22 views
Maven assembly plugin: run only one descriptor
I have a project which has several custom descriptors written for the assembly plugin. Is there a way to run only one of those descriptors at a time instead of the whole bunch? I t …
0
votes
2answers
34 views
Using the same key for signing multiple assemblies: wise/unwise?
It's possible to use the same strong name key for multiple related projects/assemblies.
I'm interested to know whether there are any drawbacks to using this approach. SPecifically …
1
vote
2answers
26 views
Is there a way to specify assembly references based on build configuration in Visual Studio?
I have a project that adds some extensibility to another application through their API. However, I want to be able to use the same project for multiple versions of their applicatio …
0
votes
0answers
7 views
How can I provide an API stub for an MEF component?
The Visual Studio 2010 SDK ships with many assemblies like Microsoft.VisualStudio.Text.Data and Microsoft.VisualStudio.Text.UI that are just stubs. To write an extension for Visual …
0
votes
1answer
17 views
Preventing GetType from throwing exceptions on internal types
Is there any way to prevent o.GetType() from throwing an exception when called on an object whose type is internal and resides in another assembly?
I am wrapping a COM based API …
0
votes
0answers
14 views
How does Visual Studio populate its Add References dialog?
This is a deliberate repost of an earlier question. The reason why I'm posting a question that has already been answered is I beleive it wasn't answered completely.
My question is …
0
votes
0answers
9 views
loading assemblies at runtime - plugin vs appDomain vs StructureMap vs MEF
I'm working on an application where users can create classes programatically at runtime. They have a UI screen where they fill out meta data which gets turned into classes. Basic …
1
vote
1answer
34 views
Storing reporting assemblies (.net) in a database
I'm developing a project where users need to build reporting queries using complex Linq statements to generate data sets.
The best way I could think of to compile these user-gener …
0
votes
3answers
83 views
C# Get path of class library
I have a class library that uses some xml files found in its own directory.
When referencing this library from another project, how do I ensure the library is working from it's ow …
0
votes
1answer
23 views
Is there any difference between assemblies compiled from WebApplication and ClassLibrary projects?
In other words, if I have a compiled dll file, is there a way to find out (using Reflection) whether this dll is produced from a WebApplication, ClassLibrary or another project typ …
