当我使用命令行构建C#/.NET时,如何设置配置

本文关键字:何设置 配置 设置 NET 命令行 构建 | 更新日期: 2023-09-27 18:00:31

当我的程序试图访问网络驱动器中的dll时,我收到了此错误消息。

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.

按照链接,我得到了这个信息,我需要有这个配置。

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

如何将此配置信息放在什么位置?我使用Visual Studio 2010,但我不使用Visual Studio IDE,只是有一个简单的批处理文件来构建C#代码。

已添加

我使用App.config找到了这个网站,我认为可能不可能将方法与命令行构建一起使用。

当我使用命令行构建C#/.NET时,如何设置配置

如果您的输出文件是foo.exe。创建foo.exe.config,将其复制到foo.exe旁边,并将其放入:

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

您尝试过AllowPartiallyTrustedCallers吗?