Azure project not starting locally - cannot find assemblies

I am afraid for 2 days with this. I have a solution with 4 projects inside:

  • Web
  • Service
  • The objects
  • Dal

When I set the web project as launch and start it, everything works fine. Now I am adding an empty Azure Cloud Service project to the solution and manually adding the web project as a new web role project. When I launch the recently added Azure Cloud Service, it starts the cloud emulator, but the project does not start because it cannot find AutoMapper.dll (the web project uses it). If I add AutoMapper.dll to the GAC it proceeds to the next external assembly (in my case, Dapper.dll). I double-check, and all my external assemblies have Copy local value set to true.

Why search for a cloud project in the GAC and not in the bin folder? I have to do something terrible, so please help me.

+4
source share
1 answer

I managed to solve the problem of deleting the temporary file in the folder C: \ users \ username \ AppData \ Local \ Temp \ Temporary ASP.NET.

0
source

All Articles