6

我经常被这个刺痛,当然总是在最糟糕的时刻。当我编辑 xaml 文件时,我收到此错误

(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 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.)

我在 devenv.exe.config 中 添加了推荐的元素

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

这应该摆脱它,但对我不起作用。我应该在别处添加这个吗?系统如何首先知道这是从 Internet 下载的?我怎样才能摆脱那个警告?

4

3 回答 3

7

我也将 XML 添加到其他配置文件(XDesProc.exe.config 和 XDesProc.exe.appx.config)中,它为我解决了这个问题:

  1. 转到 C:\Program Files\Microsoft Visual Studio 11.0\Common7\IDE

  2. 使用文本编辑器打开文件 XDesProc.exe.config、devenv.exe.config 和 XDesProc.exe.appx.config(可能需要管理员模式)

  3. 找到 </runtime> 并在它之前添加 <loadFromRemoteSources enabled="true"/> (如果您复制/粘贴,请确保双引号以 ASCII 或 VS 的形式出现)

(来源:http ://www.sehajpal.com/index.php/2010/10/how-to-solve-loadfromremotesources-error-in-vs-2010/ )

(类似问题:WPF 设计器无法在 VS 11 beta 中加载

于 2012-08-07T02:19:50.587 回答
3

当您从不安全的来源(互联网)粘贴文件时,这可能是我偶尔遇到的情况。您加载的任何资源都可能被阻止。在 Windows 资源管理器中,Properties从这些程序集或文件的上下文菜单中进行选择。在此对话框的底部,单击Unblock可用的按钮。它应该工作。

于 2012-07-24T21:50:56.500 回答
0

我能够使用以下步骤解决此问题:

  1. 在 Windows 资源管理器中转到此路径:C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE
  2. 在记事本或您选择的任何编辑器中打开 devenv.exe.config 文件。
  3. 在文件中搜索此元素结束标记:
  4. 在此元素结束标记之前,复制并粘贴以下配置开关
  5. 保存并关闭配置文件

这些步骤取自这里: http ://www.sehajpal.com/index.php/2010/10/how-to-solve-loadfromremotesources-error-in-vs-2010/

于 2012-05-14T10:56:02.497 回答