我被水母蜇伤这个周期性的基础上,在最糟糕的时刻当然永远的。 当我编辑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>
这是为了摆脱这一点,但对我不起作用。 我要补充这在其他地方? 系统如何在第一时间知道,这是从网上下载? 我怎样才能摆脱警告?
我加入了XML到其他配置文件,以及(XDesProc.exe.config和XDesProc.exe.appx.config),它解决了这个问题对我来说:
转到C:\ Program Files文件\微软的Visual Studio 11.0 \ Common7 \ IDE
打开文件XDesProc.exe.config,devenv.exe.config,并使用XDesProc.exe.appx.config文本编辑器(可能需要管理员模式)
查找</运行>之前,添加<启用loadFromRemoteSources =“真” />(如果你复制/粘贴,确保双引号来通过为ASCII或VS将会有一个配合)
(来源: http://www.sehajpal.com/index.php/2010/10/how-to-solve-loadfromremotesources-error-in-vs-2010/ )
(类似的问题: WPF设计未能在VS 11测试版加载 )
这可能是我所有时当你的文件从一个不安全的源(互联网)粘贴碰上了。 你加载任何资源可能被阻止。 在Windows资源管理器,选择Properties
从这些组件或文件的上下文菜单。 在此对话框的底部,点击按钮Unblock
(如果可用)。 它应该工作,然后。
我能解决这个使用下列步骤:
- 转到在Windows资源管理器这个路径:C:\ Program Files文件\微软的Visual Studio 10.0 \ Common7 \ IDE
- 用记事本打开devenv.exe.config文件或任何你选择的编辑器。
- 搜索该元素的文件在关闭标签:
- 在此之前,元素结束标记,复制并粘贴下面的配置开关
- 保存并关闭该配置文件
这些步骤都是从这里取: http://www.sehajpal.com/index.php/2010/10/how-to-solve-loadfromremotesources-error-in-vs-2010/
文章来源: loadFromRemoteSources enabled=“true” // XAML designer // VS 11 beta and 2012 RC