C #: no se pudieron cargar tipos desde el ensamblaje

Después de agregar Lucene.net y Lucene.net Contrib a un C # MVC3, recibo el siguiente mensaje después de la primera ejecución exitosa. Después de recibir este error, necesito borrar por completo los archivos C: \ Users \ Me \ AppData \ Local \ Temp \ Temporary ASP.NET antes de poder ejecutar el proyecto nuevamente.

He intentado eliminar los archivos de Lucene manualmente (incluidas las referencias en mi proyecto) y volver a instalarlos, tanto con NuGet como manualmente, pero siempre es la misma situación; después de que el proyecto se haya ejecutado una vez, comienzo a recibir los siguientes errores:

Nota: Contrib.Regex es parte de Lucene.net Contrib.

<code>Server Error in '/' Application.

Could not load types from assembly Contrib.Regex, Version=2.9.4.0, Culture=neutral, PublicKeyToken=85089178b9ac3181, errors:
Exception: System.IO.FileLoadException: Could not load file or assembly 'Lucene.Net, Version=2.9.4.1, Culture=neutral, PublicKeyToken=85089178b9ac3181' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
File name: 'Lucene.Net, Version=2.9.4.1, Culture=neutral, PublicKeyToken=85089178b9ac3181'

=== Pre-bind state information ===
LOG: User = rcw7\Me
LOG: DisplayName = Lucene.Net, Version=2.9.4.1, Culture=neutral, PublicKeyToken=85089178b9ac3181
(Fully-specified)
LOG: Appbase = file:///C:/Development/Projects/Foobar/Foobar/
LOG: Initial PrivatePath = C:\Development\Projects\Foobar\Foobar\bin
Calling assembly : Contrib.Regex, Version=2.9.4.0, Culture=neutral, PublicKeyToken=85089178b9ac3181.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Development\Projects\Foobar\Foobar\web.config
LOG: Using host configuration file: C:\Users\Me\Documents\IISExpress\config\aspnet.config
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config.
LOG: Post-policy reference: Lucene.Net, Version=2.9.4.1, Culture=neutral, PublicKeyToken=85089178b9ac3181
LOG: Attempting download of new URL file:///C:/Users/Me/AppData/Local/Temp/Temporary ASP.NET Files/root/e9b4cfa4/edfa73f8/Lucene.Net.DLL.
WRN: Comparing the assembly name resulted in the mismatch: Revision Number
ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated.
Exception: System.IO.FileLoadException: Could not load file or assembly 'Lucene.Net, Version=2.9.4.1, Culture=neutral, PublicKeyToken=85089178b9ac3181' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
File name: 'Lucene.Net, Version=2.9.4.1, Culture=neutral, PublicKeyToken=85089178b9ac3181'
</code>

Salida completa aquí:http://pastebin.com/Vbu4VK7B

Inicialmente, pensé que este era un problema local para mi entorno de desarrollo, pero después de reconstruir y copiar el proyecto en nuestro servidor, obtengo los mismos errores.

¿Alguna sugerencia sobre cómo superar esto? :-)

Respuestas a la pregunta(4)

Su respuesta a la pregunta