1
vote
7answers
213 views
Mimicking assembly resolution of the msbuild process.
I am writing a validation tool that checks the versions of files referenced in a project. I want to use the same resolution process that MSBuild uses.
For example, Assembly.Load(. …
0
votes
1answer
24 views
Assembly Resolution in Remote Desktop published app
I've built a custom data entry solution for my organization. It's built from the bottom up in .Net (C#), originally 2.0 but we've recently moved to 3.5. We run a pretty tight rel …
0
votes
2answers
108 views
Problems redirecting NUnit assembly version (what is [AssemblyName].temp.config?)
I am using some of the testing libraries from Sharp Architecture which make use of NUnit 2.5.0 while the rest of my project uses NUnit 2.5.1 so I placed an assembly redirect in my …
1
vote
4answers
52 views
Debugging error “The Type ‘xx’ is defined in an assembly that is not referenced”
The full error is as follows:
The type
'System.Windows.Forms.Control' is
defined in an assembly that is not
referenced. You must add a reference
to assembly 'System.Win …
0
votes
2answers
194 views
What can cause the .net runtime to attempt to use the wrong version of an assembly
I have an application which references the assembly "Microsoft.Xna.Framework, Version=2.0.0.0, Culture=neutral, PublicKeyToken=6d5c3888ef60e27d". I have created an installer projec …
2
votes
3answers
97 views
C#: Custom assembly directory
Say we have an application which consists of one executable and 5 libraries. Regularly all of these will be contained in one directory and the libraries will be loaded from there.
…
5
votes
4answers
157 views
How to provide a fallback assembly instead of the one that can’t be loaded?
At runtime, if a referenced assembly fails to load with e.g. "Strong name validation failed" (because it's test-signed), is there a way to provide a substitution assembly from anot …
1
vote
2answers
35 views
Loading Assemblies
Hi guys,
There are plenty of discussing that shows how to load assemblies from BIN and from GAC... my question is more general and I would love to know how assembly loading work.
…
1
vote
1answer
55 views
Why are multiple versions of a referenced DLL included in the manifest?
I am building a .Net solution using MSBuild v3.5 targeting .Net 2.0.
We are upgrading to use Crystal 11.5 so I have updated the binaries in our source control tree to contain the …
2
votes
1answer
64 views
Multiple Assembly.Load(Byte[]), same instance or leak ?
What happens when I call Assembly.Load(Byte[]) multiple times with a Byte array containing the same assembly ?
Will I get the same instance of Assembly for each call ?
The same a …
2
votes
2answers
178 views
Upgrade a reference dll in a C# project without recompiling the project
I need to take a built version of an C# application and change one of the reference dll's. What is the best way to do this, I have specific version turned off on the reference dll …
0
votes
0answers
54 views
Is it possible to have extra context inside the AssemblyResolve method?
Dear ladies and sirs.
Motivation. I have a client-server application. At some point the server side creates a new type dynamically based on certain metadata, unavailable to the cl …
0
votes
1answer
79 views
BindingRedirect to different assembly name
You can use BindingRedirect to redirect YourAssembly.dll 1.1.0.0 to 1.2.0.0.
Does anyone know if its possible to do this if the assembly names are different.
E.g.
YourAssembly1 …
0
votes
2answers
71 views
Where do I find Microsoft.VisualStudio.DebuggerVisualizers?
A project won't compile because of a missing assembly. The file that causes the error has a
using Microsoft.VisualStudio.DebuggerVisualizers;
The VisualStudio part is marked in …
1
vote
2answers
96 views
Reference assembly located on Network Share in ASP.Net
Where I'm at we have a large number of programs that can run that all use features from a set of assemblies located on a network share: things like writing to a common systems log, …
