I've seen this: VSTS 2010 SGEN : error : Could not load file or assembly (Exception from HRESULT: 0x80131515) and none of the answers work. It also doesn't appear when I build or anything. I can run the project fine, it happens when I try to add an entity framework templated controller:

controller settings

Then I get this error:

error message

All project files are on my network share because that is where My Documents resides for our work. Here is what I tried:

1) Turning Generator Serialization Assembly in project settings to on, off, and auto.

2) Adding sgen.exe.config to C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin\NETFX 4.0 Tools with the following code:

<configuration>
 <runtime>
   <loadFromRemoteSources enabled="true" />
 </runtime>
</configuration>

3) Tried to unblock the assemblies, but I had no unblock option in the properties tab. no unblock option

None of these solutions work. Does anyone have any idea how I can fix this??? This error occurs for any custom assembly from nuget or my own projects due to their location existing on the network space, but only when trying to add an EF templated controller. I can build and run the program fine.

link|improve this question

From How to: Use an Assembly from the Web in Visual Studio "The Unblock button will not appear if the assembly is already unblocked and available." So I'm guessing that's why you didn't get that option. As a side note did remember to restart Visual Studio? – Conrad Frix Dec 15 '11 at 17:55
@ConradFrix Yes I did restart multiple times, still no dice =(. – DOTang Dec 15 '11 at 18:14
Try adding your <loadFromRemoteSources enabled="true" /> to C:[Visual Studio 2010 Install Dir]\Common7\IDE\devenv.exe.config and see if that helps. – hawkke Dec 16 '11 at 0:25
@hawkke Yes sir that did the trick! Please post is as an answer so I can give you rep! – DOTang Dec 16 '11 at 14:54
feedback

1 Answer

up vote 7 down vote accepted

Try adding your <loadFromRemoteSources enabled="true" /> to C:\[Visual Studio 2010 Install Dir]\Common7\IDE\devenv.exe.config and see if that helps :)

link|improve this answer
Thank you so much! – sinni800 Feb 7 at 14:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.