I've been using MBUnit to test my code. I've got auditing setup and it is working fine with MBUnit but when I move it to my web service (I'm doing WCF) it doesn't seem to be recognizing the injected auditing dll.
I realize I need to use fullname and I've tried many combinations.
So here goes: I'm using LLBLGen v2.5
My working app.config (top part)
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- ENABLING DEPENDENCY INJECTION
For more info read "LLBLGenPro Help - Depedency Injection mechanism"-->
<section name="dependencyInjectionInformation" type="SD.LLBLGen.Pro.ORMSupportClasses.DependencyInjectionSectionHandler, SD.LLBLGen.Pro.ORMSupportClasses.NET20, Version=2.5.0.0, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27" />
</configSections>
<!-- SPECIFYING DI INFORMATION
Comment/Uncomment assemblies to enabled/disabled Auditors injected to your EntityClasses
For more info read "LLBLGenPro Help - Depedency Injection mechanism" -->
<dependencyInjectionInformation>
<additionalAssemblies>
<assembly filename="RAMFrameworkAuditors.dll" />
</additionalAssemblies>
</dependencyInjectionInformation>
My possibly non working web.config
<?xml version="1.0" encoding ="utf-8"?>
<configuration>
<configSections>
<!-- ENABLING DEPENDENCY INJECTION
For more info read "LLBLGenPro Help - Depedency Injection mechanism"-->
<section name="dependencyInjectionInformation" type="SD.LLBLGen.Pro.ORMSupportClasses.DependencyInjectionSectionHandler, SD.LLBLGen.Pro.ORMSupportClasses.NET20, Version=2.5.0.0, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27"/>
</configSections>
<!-- SPECIFYING DI INFORMATION
Comment/Uncomment assemblies to enabled/disabled Auditors injected to your EntityClasses
For more info read "LLBLGenPro Help - Dependency Injection mechanism" -->
<dependencyInjectionInformation>
<additionalAssemblies>
<assembly fullname="RAMFrameworkAuditors, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null "/>
</additionalAssemblies>
</dependencyInjectionInformation>
Is there something else I'm missing?
Thanks,
-Luke