I am looking to solve this error:
Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified." This error is located in the web.config file.
When I copy log4net.dll to the bin directory of my webapp, I get a
Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference.
This error also occurs in the web.config file.
It's easy enough to change the version and the public key token to match the file so that the assembly loads correctly. When I do that, my website runs perfectly, except for when a reportViewer
object is initialized. Then it throws the original error at the reportViewer tag, not the web.config.
My hypothesis is that if I install the requested version of log4net.dll
, my problems will be solved. But I have no clue which file that it, or where to find it. I've checked the obvious by downloading log4net 1.2.10 and trying out every dll in the download.
I should mention that the website runs without issues on my development machine, but not when published to my server.
I'm running an asp.net website, .NET 4.0, IIS 7, on a Server 2008 R2 OS. I've installed Crystal Reports 13.0.1 for 64bit (my machine is 64bit).
How can I resolve this issue?
EDIT: In response to @Kevian's answer, I have made the change to my web.config file. I still get the error where the manifest definition doesn't match the assembly reference. The code that throws this error is:
Line 33: <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true"
Line 34: BestFitPage="True" ToolPanelView="None" />
I had this problem in my code. One of the Projects that someone was using had Log4Net version conflicts. They were using 12.2.10 and I had 12.2.13. So to fix the problem I got rid of my reference and found their reference dll. I used that instead and it worked perfectly.
To find a reference Microsoft Visual Studio has a Browser feature. You can use that to get the dll. To find the dll you can click on your references in your project and the click the reference that you want to find. In this case Log4Net. It will show a list of dependencies, the other log4net should be near the selected Log4Net, and there should be a some text showing the location of the current selected dll reference. This is where you will find the reference.
Download the log4net.dll from below link and place in your project or near exe.
https://linqtoexcel.googlecode.com/issues/attachment?aid=-4193267707342915929&name=log4net.dll&token=YGlMyuIszON-diwlGvriWsaWOmk%3A1381378808809
Try adding this to your web.config. It basically tells the run-time that you are OK for it loading the same assembly for both version
You'll need to replace
1.2.10.0
with the version that you actually have in your bin folder.MSDOS
For your issue i recommend you to delete/remove this dll in refereneces and reinstall and Here is how to properly install Log4Net on VS 2013:
1) Making sure you turn on your nuget.org Package Sources for NuGet Packages Manager utility by: Rightclick Project (not solution) then select "Manague NUGet Packages ..." at bottom left select "Settings" then select "Package Manager" then select "Package Sources" under Available package sources select "nuget.org" also check both "Machine-wid package sources" the click "OK"
2) It will take you to Manage NUGet Packages then select "Online" on the left pane then search for "log4net" it is ported from apache log4j then install it. Done you will find it installed under References in your project
I also attached screenshots.
enjoy!
There are a couple of issues at play here that are resolvable:
The Fix that worked for us in 64-bit was to get the latest log4net.dll which actually has a new PublicKeyToken, replace the log4net.dll in your 3rd party bin folder, AND change all of the log4net.dll references to look like so: