C #: não foi possível carregar tipos de assembly

Depois de adicionar Lucene.net e Lucene.net Contrib a um C # MVC3, recebo a mensagem abaixo após a primeira execução bem-sucedida. Depois de receber esse erro, preciso limpar completamente os arquivos ASP.NET C: \ Users \ Me \ AppData \ Local \ Temp \ Temporary antes de poder executar o projeto novamente.

Eu tentei remover os arquivos do Lucene manualmente (incluindo referências no meu projeto) e reinstalá-los - ambos com NuGet e manualmente - mas é sempre a mesma situação; depois que o projeto foi executado uma vez, começo a receber os seguintes erros:

Nota: Contrib.Regex faz parte do 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>

Saída completa aqui:http://pastebin.com/Vbu4VK7B

Inicialmente eu pensei que este era um problema local para o meu ambiente de desenvolvimento, mas depois de reconstruir e copiar o projeto para o nosso servidor, eu recebo os mesmos erros.

Alguma sugestão de como superar isso? :-)

questionAnswers(4)

yourAnswerToTheQuestion