Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
2k views

.Net Assembly Binding Redirect with Differing Public Key Tokens

Is it possible to perform an assembly binding redirect between different versions of a referenced assembly if the public key token is null on the older version and set on the newer version? For ...
6
votes
2answers
872 views

Assembly Binding Redirection and Code Analysis

I'm using DotNetOpenAuth (which references System.Web.Mvc version 1.0.0.0) in a Mvc 3.0.0.0 project in Visual Studio 2010. I'm using assembly binding redirection as follows:- <runtime> ...
6
votes
1answer
655 views

Assembly Binding Log Viewer (fuslogvw) not logging any bindings

Assembly Binding Log Viewer (fuslogvw) is not logging bindings for any version of the framework installed on my machine. I tried using a custom log location, the default log location, the default ...
3
votes
1answer
95 views

Default assembly binding behaviour

We are building an API that is stored in an assembly, let's call it MyAssembly.dll This assembly has an AssemblyVersion of 1.0.0.0 I would expect, that when releasing a new version of the assembly, ...
3
votes
1answer
457 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.dll (v1.1) ...
2
votes
1answer
35 views

dll binding for asp.net (dll versioning)

I know this is a very basic question - but I did not face this issue till now - so am asking for help. I have two dll files, with the same name (example.dll), but fortunately with diff version ...
2
votes
2answers
721 views

Is it possible to swap System.Data.SqlServerCe 4.0.0.0 with version 4.0.0.1 at runtime?

My application references a library project that has System.Data.SqlServerCe 4.0.0.0 as a dependency. I'm trying to private deploy my app, however, which requires System.Data.SqlServerCe 4.0.0.1. ...
2
votes
1answer
179 views

assemblyBinding in .NET app works with old version if new version is not available?

I've specified an assembly binding for a newer version of an assembly used in my app, and works great. However, on one of my client machines, the new version of that assembly is missing, but instead ...
2
votes
2answers
680 views

How to operate with multiple assembly versions in private folders using config?

I have a scenario where I have multiple versions of the same assembly that I need to store in the application private folders, in a structure like this: .\My.dll // latest version, say ...
1
vote
1answer
135 views

NGEN'd assemblies not being loaded

I'm trying to measure the performance impact of NGENing my assemblies versus not but I am unable to get my executable to load the NGEN assemblies. I ran the following from the VS2010 command prompt: ...
1
vote
1answer
133 views

PortableLibrary Could not load file or assembly

I have asp.net 4 webforms website which references PortableLibrary project. In the website I serialize classes from PortableLibrary. When I deployed the project to webserver machine with IIS6 I'm ...
1
vote
2answers
245 views

Debug .NET assembly binding aka Find what dll is used and why

We're having some mystery version mismatches on our referenced dll's loaded at runtime. Errors like: Could not load file or assembly X or one of its dependencies. The located assembly's manifest ...
1
vote
3answers
906 views

Assembly binding under a WindowsImpersonationContext. How to prevent FileLoadException?

I have an application that needs to do a lot of impersonation, due to moving and creating many files across protected network shares. I've created a simple static class that has a method takes a ...
0
votes
0answers
11 views

Applying Hotfixed Binaries

I installed the hotfix http://support.microsoft.com/kb/980251 on my box. I see the binaries downloaded to WinSxS folder. However my app picks up the PresentationFramwork.dll and other fixed bins from ...
0
votes
1answer
536 views

ConfigurationManager.OpenMappedExeConfiguration.GetSection() fails (just started happening recently)

First off, let me apologize in advance for the extremely long question -- kudos to anyone that makes it to the end! I have a C#/.NET 3.5 class library which is not installed in the GAC since the ...
0
votes
1answer
424 views

The specified module could not be found error on a virtual machine hosting a website

I've been dealing remotely with a weird situation with a Windows Server 2003 virtual machine that's running a ASP.NET 3.5 website... Or, at least is trying to run it. The website was installed using ...
0
votes
2answers
125 views

configure assemblyBinding once for multiple executables

I have a folder that contains multiple executables. Currently the assembly binding redirect is configured in each executable.exe.config file. Is there a way to configure this just once and all ...
0
votes
1answer
92 views

ASP.NET MVC 2: Why does my app reference both versions (1 and 2)?

I opened up the DLL for an ASP.NET MVC 2 project of mine in Reflector, and noticed that there are two references to System.Web.Mvc - one for version 1.0.0.0, and one for 2.0.0.0. I don't seem any ...
0
votes
2answers
1k views

MissingMethodException when running application on different computer

I have a problem where I compiled my application on Visual Studio 2010 while targetting the .NET Framework 3.5, deployed it to a client server, only to find it gives me the following error: ...
0
votes
1answer
758 views

Assembly FileLoadException (Access is denied) after period of time

I have a web application that works fine for a while (a few days) and then starts throwing FileLoadException's when instantiating a class that references an external dll. I'm not explicitly loading ...