2
votes
7answers
118 views
How can I protect my Assembly to being used by someother?
how can I protect my assembly, because once I deploy the setup,
assembly will be deployed too, and there are chances that user will get the assembly from Program Files, and may add reference to any …
0
votes
0answers
19 views
ILMerge DLL not merged in correctly
In the build process for a .NET C# tool, I have been using ILMerge to merge the assemblies into a single exe.
I added a new class library recently, and now the ILMerge is failing. I have remembered …
-1
votes
2answers
19 views
Get interface and object from assembly at run time and pass them to generic class
Hello All
I have two assembly's BALL and DALL.BALL have a interface ILoadClassand DALL have a class LoadClass. Now what is my problem that i need to load these assembly's at run time and pass them …
3
votes
2answers
1k views
Load WPF styles (static resources) from an external assembly
I have a few WPF applications and I want all my styles to be in a shared assembly instead of declaring them in each application separately.
I am looking for a way so I don't have to change all my …
0
votes
3answers
56 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 interface.
Assembly MyDALL …
4
votes
9answers
2k views
C# Load assemblies at runtime
Hi
Is it possible to instantiate a object at runtime if I only have the DLL name and the class name, without adding a reference to your project ?
eg. DLL name : library.dll and class name : …
0
votes
0answers
26 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 classes instance in …
1
vote
3answers
41 views
Can NInject load modules/assemblies on demand?
Are there facilities in NInject that will allow me to load services from other modules (assemblies) on demand like it's done in Unity?
1
vote
2answers
43 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 not simply an …
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 model however may change …
1
vote
2answers
28 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 application, because most of …
0
votes
1answer
25 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 tried using the …
0
votes
2answers
35 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, can it lead to a …
0
votes
0answers
8 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 Studio, you …
0
votes
3answers
86 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 own directory?
I …
