loadFromRemoteSources enabled =“true”// XAML设计师// VS 11 beta和2012 RC

时间:2012-04-19 08:45:32

标签: wpf visual-studio dll cas

我经常在这种情况下受到刺激,当然也总是在最糟糕的时刻。 当我编辑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

中添加了recommended个元素
<configuration>
  <runtime>
    <loadFromRemoteSources enabled="true" />
  </runtime>
</configuration>

应该摆脱它,但对我不起作用。 我应该在其他地方添加吗? 系统如何首先知道这是从互联网上下载的? 我该怎样摆脱那个警告?

3 个答案:

答案 0 :(得分: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. 查找&lt; / runtime&gt;在它之前,添加&lt; loadFromRemoteSources enabled =“true”/&gt; (如果您复制/粘贴,请确保双引号通过,因为ASCII或VS将适合)

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

    (类似问题:WPF designer fails to load in VS 11 beta

答案 1 :(得分:3)

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

答案 2 :(得分:0)

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

  1. 在Windows资源管理器中转到此路径: C:\ Program Files \ Microsoft Visual Studio 10.0 \ Common7 \ IDE
  2. 在记事本或您选择的任何编辑器中打开devenv.exe.config文件。
  3. 在文件中搜索此元素结束标记:
  4. 在此元素结束标记之前,复制并粘贴以下配置开关
  5. 保存并关闭配置文件
  6. 这些步骤取自这里: http://www.sehajpal.com/index.php/2010/10/how-to-solve-loadfromremotesources-error-in-vs-2010/