Unable to view constructor in VS2010 due to DLL over network

I get an error -

Unable to load metadata for assembly 'Aurora.UIResources'. This assembly may have been downloaded from the Internet. See http://go.microsoft.com/fwlink/?LinkId=179545 . The following error occurred while loading: Failed to load the file or assembly "Aurora.UIResources, Version = 1.0.0.0, Culture = neutral, PublicKeyToken = null" or one of its dependencies. The operation is not supported. (Exception from HRESULT: 0x80131515)

I am referencing the file over the network and the application will work and work fine. It seems I just don’t see the “preview” in the designer. I am running Windows 7 Enterprise 64bit.

Does anyone have an idea on how to resolve this?

+7
visual-studio-2010 wpf xaml
source share
1 answer

See this

This seems to work for some people.

"Open the devenv.exe.config file (in C: \ Program Files \ Microsoft Visual Studio 10.0 \ Common7 \ IDE on my machine) and add this parameter

<runtime> <loadFromRemoteSources enabled="true" /> .... </runtime> 
+15
source share

All Articles