Reputation: 4180
I am trying to load assembly by :
Assembly component = Assembly.LoadFrom(componentPath);
where componentPath
is a full path of network location and get the the following error:
An attempt was made to load an assembly from a network location which would have caused the assembly to be sandboxed in previous versions of the .NET Framework.
This release of the .NET Framework does not enable CAS policy by default, so this load may be dangerous.
If this load is not intended to sandbox the assembly, please enable the loadFromRemoteSources switch. See http://go.microsoft.com/fwlink/?LinkId=155569 for more information.
Can someone please explain what should I do to avoid this security check?
Thank you.
Upvotes: 17
Views: 29076
Reputation: 3569
In addition to Furqan Safdar's answer, another option would be to add this tag in the configuration file:
<configuration>
<runtime>
<loadFromRemoteSources enabled="true"/>
</runtime>
</configuration>
Hope these links could help:
http://msdn.microsoft.com/en-us/library/dd409252(VS.100).aspx
Upvotes: 8
Reputation: 16708
I was having this same issue. The reason was that the Assembly file was blocked by Windows. I resolved it by right clicking on the Assembly file and selecting properties. In the Properties dialog, click Unblock button under the General tab and click Apply and then OK.
Upvotes: 22