Reputation: 1503
I am trying to deploy a simple intranet application on my local machine. I've included the deployable assemblies and have deployed it in asp.netv4 app pool but when I try to browse the application i get the below error.
Could not load file or assembly 'DotNetOpenAuth.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=2780ccd10d57b246' or one of its dependencies. The system cannot find the file specified
Could anyone please help ? thanks
Upvotes: 2
Views: 3168
Reputation: 9448
The first thing you should do is to go to your MVC web application project and expand the References
node in the project tree. Select the DotNetOpenAuth
assemblies and in the Properties
dialog, set Copy Local
to True.
and then deploy it.
Upvotes: 1