Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does log4net 1.2.10 require System.Web?

Tags:

.net

log4net

I'm writing this code in a Console Application targeting the .NET Framework 4 Client Profile.

this.container.AddFacility<LoggingFacility>(
  f => f.LogUsing(LoggerImplementation.Log4net));

When it runs, it fails with a type conversion error.

Could not convert from 'Castle.Services.Logging.Log4netIntegration.Log4netFactory,Castle.Services.Logging.Log4netIntegration,Version=2.5.1.0, Culture=neutral,PublicKeyToken=407dd0808d44fbdc' to System.Type - Maybe type could not be found

This is because the Castle.Services.Logging.log4netIntegration assembly is not copied to the output folder. As an runtime-only dependency, this doesn't break the build.

Looking at the build process, I found that it was not copying log4net or the Castle facility assembly because they depend on System.Web which is not available in the Client Profile. Changing to the standard profile means that this dependency is available and the facility can be added.

Why is this be done? What difference does it make that I am not targeting the client profile in a console application designed to be used as a scheduled task on a server?

like image 499
Simon Gill Avatar asked Jun 08 '11 15:06

Simon Gill


1 Answers

Some of the appenders depend on System.Web such as the AspNetTraceAppender. The only other option available to the developers would have been to split out components that don't depend on the System core into separate assemblies but that would have broken the beauty of log4net in that it is so simple to use. Additionally at the time of writing log4net I don't believe there was such a thing as a Client Profile.

Since log4net is open source there is nothing stopping you from downloading the source and removing the offending classes and creating your own Client Profile centric log4net assembly.

http://www.thecodeking.co.uk/2010/08/making-log4net-work-with-net-client.html

  1. Download the log4net source
  2. Open & upgrade the solution using Visual Studio 2010
  3. Remove the System.Web project reference
  4. Exclude Appender\AspNetTraceAppender.cs class from the project
  5. Add a reference to System.Configuration
  6. Navigate to Project -> log4net properties, and select the application tab
  7. Change the target framework to .NET Framework 3.5 Client Profile
  8. Select the Build tab, and change the configuration to Debug
  9. Under Conditional compilation symbols change this to NET;NET_1_0;NET_2_0;
  10. Change the configuration to Release
  11. Under Conditional compilation symbols change this to STRONG;NET;NET_1_0;NET_2_0;
  12. Edit the AssemblyInfo.cs class and update the AssemblyKeyFile attribute with a valid strong key
  13. Compile the project in Release mode and distribute the new assembly
like image 184
Bronumski Avatar answered Sep 28 '22 12:09

Bronumski