FileLoadException: Não foi possível carregar o arquivo ou o assembly no WebRole (instância de reciclagem)

Meu WebRole não inicia, mas continua reiniciando e gera esta exceção:

Application: WaIISHost.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: 
 System.IO.FileLoadException: Could not load file or assembly 'Autofac, Version=3.4.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
File name: 'Autofac, Version=3.4.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da'
   at MyDomain.Web.AutofacWebModule.Load(ContainerBuilder builder)
   at Autofac.Module.Configure(IComponentRegistry componentRegistry)
   at Autofac.ContainerBuilder.Build(IComponentRegistry componentRegistry, Boolean excludeDefaultModules)
   at Autofac.ContainerBuilder.Build(ContainerBuildOptions options)
   at MyDomain.Web.Startup.BuildAutofacContainer() in MyDomain.Web\Startup.cs:line 82
   at MyDomain.Web.WebRole.Run() in MyDomain.Web\WebRole.cs:line 25
   at Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.StartRoleInternal()
   at Microsoft.WindowsAzure.ServiceRuntime.Implementation.Loader.RoleRuntimeBridge.<StartRole>b__2()
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ThreadHelper.ThreadStart()

ATUALIZAR. Adicionada uma descrição completa do erro com a ajuda deste artigo:Solucionando problemas do cenário 7 - Reciclagem de funções

ATUALIZAÇÃO 2. Encontrou um bom artigo sobre a exceção.Reciclagem de funções dos Serviços de Nuvem com o erro “System.IO.FileLoadException: não foi possível carregar o arquivo ou o assembly”. Parece ser suficiente para resolver o problema.

O motivo da quebra está na minha instância do Azure, emE:\approot\bin\ não háMyDomain.Web.config arquivos com os redirecionamentos exigidos pelo Autofac. E aweb.config noE:\approot\ não é lido peloWaIISHost.exe. E assim quebra.

questionAnswers(1)

yourAnswerToTheQuestion