3
votes
3answers
56 views
Detect whether the assembly was built for .NET Compact Framework
Having a .NET assembly, how can I detect whether it was built for .NET CF or a full framework?
2
votes
7answers
122 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 …
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
3answers
61 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 …
0
votes
0answers
20 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
22 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 …
1
vote
2answers
31 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
28 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
1answer
27 views
Binding redirect problem in .net
I have a class library called "MyAssembly" that is internally referencing a.dll, b.dll of version 3.1.1.0; I have build the project which outputed MyAssembly.dll. On a different system (box) I have …
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 inside a .Net …
0
votes
3answers
89 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 …
1
vote
1answer
102 views
Unload/unreference a referenced assembly from F# interactive
The F# Interactive (fsi.exe) has a directive to reference a given assembly:
>#help;;
[...]
#r "file.dll";; Reference (dynamically load) the given DLL
[...]
I often like to …
1
vote
1answer
35 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-generated queries and …
0
votes
1answer
29 views
Sharing components in .NET platform
Hi!
I have an e-commerce website that is already up and running for some time. It's built on .NET 3.5. So far, so good.
The "problem" is that now I need to start sharing functionality (products …
