I’m attempting to build Log4Net for MonoTouch but the assemblies required also need to be built for MonoTouch including System.Configuration and I don’t have this source.
Has anyone had any luck building Log4Net for MonoTouch ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A large part of MonoTouch is built upon the Mono project. This means the majority of the source code, including the base class libraries (BCL), are available as open source on github.
Part of Mono’s BCL is the System.Configuration.dll assembly so you can, technically, rebuild this assembly (from source) to use it inside your own projects.
The most difficult part will be to ensure that
System.Configurationdoes not depend on things that are not part of the BCL profile shipped with MonoTouch (a superset of the Silverlight profile). That might require a bit of surgery to add/remove the required types and ensure you have everything required for your own project (Log4Net in this case).