When my program tries to access the DLL on a network drive, I received this error message.
Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'file:///Z:\smcho\works\tasks\2011\ni\ng_fpgabackend\myclass.dll' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515) ---> System.NotSupportedException: 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 maybe 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.
Following the link I received this information, I need to have this configuration.
<configuration> <runtime> <loadFromRemoteSources enabled="true"/> </runtime> </configuration>
How do I add this configuration information? I am using Visual Studio 2010, but I am not using the Visual Studio IDE, but I just want one simple batch file to generate C # code.
ADDED
I found this site using App.config, and I think it is not possible to use a command line building method.
prosseek
source share