0I have a static library in which class with log4net is defined.something like this -
1 2 3 4 5 6 7
public ref class CustomLog
{
public:
static log4net::ILog^ m_logger;
log4net::ILog^ SetLogger();
};
This static library is then used to connect to another C++ DLL - I have added header file used for this log class in C++ DLL also added static library reference in additional dependency.WHen I ma trying to compile this DLL getting following linking error -