Reputation: 1066
In a C# WPF project, I added Xceed.Wpf.AvalonDock into References. In xaml file, I have
xmlns:xcad="http://schemas.xceed.com/wpf/xaml/avalondock"
...
<xcad:DockingManager x:Name="DockMangager" Grid.Column="0" Grid.Row="1">
</xcad:DockingManager>
Could someone help? Thank you!
Upvotes: 4
Views: 2409
Reputation:
Add the reference to the project again and the error will go away. it is always good after adding references to clear the recent to make sure that unchecked references are not being removed.
Upvotes: 0
Reputation: 1104
Just had this happen to me. Mine were not blocked. My references had a yellow warning by them. I just added the Xceed DLLs again, rebuilt, and all is well.
Upvotes: 0
Reputation: 8111
This is a security problem of the dll when downloaded from the internet.
Xceed.Wpf.AvalonDock.dll
file in Windows explorerYou can also read this:
http://www.kodyaz.com/visual-studio/unblock-assembly-file-in-visual-studio-2012.aspx
Upvotes: 4