私はこれによって繰り返し刺されます、そしてもちろん常に最悪の瞬間に。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>
これはそれを取り除くことになっていますが、私にはうまくいきません。これを他の場所に追加する必要がありますか?そもそも、これがインターネットからダウンロードされたことをシステムはどのようにして知るのでしょうか。どうすればその警告を取り除くことができますか?