I have a project in Asp.Net MVC using .NET Framework 4.5, but my host is shared and has a security policy that only allows Medium-Trust (save Locaweb).
When you publish the application, even if you change the Web.config to Medium-Trust, the application does not work. I believe it is some DLL that requests some service that can not be accessed in Medium-Trust.
As a precaution I changed all the reference DLLs to Copy Local = true
, but it still has not worked.
Is there any way to make it work the way it is?