1
vote
1answer
33 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
64 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
0answers
13 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
1answer
22 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 …
1
vote
1answer
89 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 …
0
votes
1answer
23 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 function …
0
votes
1answer
21 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 sy …
1
vote
2answers
48 views
Reference two equal assemblies, only public keys differ
My Visual Studio 2008 project references two (external) assemblies (A+B) both of which happen to be referencing the same third assembly (C). However, assembly A expects assembly C …
0
votes
1answer
13 views
Prevent a specific assembly from being added to my factory project?
I've created a factory assembly that can process any type of transaction (that supports ITransactionType). I can add more transaction types in separate assemblies, all of which wi …
0
votes
0answers
15 views
signing assemblies on windows mobile device
HI
I have created an application for my windows mobile 6.0 device and I need to sign it so that the user can download updates without having to select that they trust the publis …
0
votes
3answers
59 views
.cs to .dll convertion problem
Hi, I've 10 .cs files in my app_code folder. Now I want to convert all 10 class files into one dll. Is if possible?
I'm trying to convert it by using csc /t:library admin.cs --> …
1
vote
1answer
34 views
WCF extensions without including the assembly version
As discussed here, I'm trying to add a WCF endpoint-extension; I've got it working, but I need to include the full assembly details:
<extensions>
<behaviorExtensions& …
0
votes
1answer
41 views
Force web application to use certain dll version C# asp.net
Hi All,
I have a ASP.NET web application in which I have references to a couple of Class Libraries I developed.
Each of these libraries has a version number set in the AssemblyInf …
0
votes
1answer
17 views
How does Visual Studio find Unity/P&P or Office assemblies in its Add References Dialog?
I have read other posts on SO regarding VS's Add References dialog and how it populates assemblies. However, even after looking in Reference Assemblies folder and using the Assembl …
1
vote
3answers
80 views
How to unload assemblies from the GAC?
I am trying to run automated tests on a particular product.
The test consists of installing the product into different locations on the hard drive and then performing some operatio …
