Visual Studio: Unknown Build Error (HRESULT 0x80131515)

If you are receiving this really informative error message in Visual Studio and looking for a solution, I hope the following can help you. I spent wasted a fair bit of time trying to figure this out. Funny thing is, it’s actually quite common in the post-XP(i.e. Vista and Windows 7) era (I’ve had it myself several times now)..

The Cause

After much digging, it turns out the issue is caused by the file blocking placed on downloaded assemblies. For example, I had the following after downloading the binaries for Autofac and adding it to my project:

Error    1    Unknown build error, 'Could not load file or assembly 'file:///c:\{Project}\lib\Autofac.dll' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)'     {Project}

To Fix

image The good news, is this is pretty easy to fix (as are most problems when you know the cause!).

Open up the file properties dialog (right click in Explorer > Properties) and then you will see the security warning:

This file came from another computer and might be blocked to help protect the computer

That’s what we are after – click the “Unblock” button. Click “OK” (or “Apply” > “OK” if it makes you feel better). Flick back to VS and fire up another build and all should be right in your world and you can go back to cutting code (you don’t need to close/reopen project etc).

WTF’s/Questions to Note

  • Considering how many assemblies we devs download from the Internet, how has this not been more common?
  • What is with the language in the file properties? “The file might be blocked?” – If Windows doesn’t know, who does?!
  • What operation is VS trying to perform that is “not supported” – one would assume that an IO error of some kind is occurring – why it not at least saying “error reading file” to at least point us to the file?

Hope this helps people and saves them some time!

Comments

  1. Thanks Rob - I wasted an hour on this before finding your post and solving the problem in about 5 seconds!

    Cheers,

    ReplyDelete
  2. This is good information. I had a VS 2010 project that stopped building in Release mode (but would still build in Debug!) and this was the problem. Funny thing is that it worked for a while and only began failing recently.

    Thanks!

    ReplyDelete
  3. Thanks Rob. Chalk up some more time saved by your post.

    I had to close down Visual Studio and start it again. This may be because the project I was trying to build was WiX and it was one of the WiX DLLs that was blocked.

    ReplyDelete
  4. thanks it works like a charm :D

    ReplyDelete
  5. thanks a bunch! :)

    ReplyDelete
  6. Hey Rob,

    I struggled with this issue for close to an hour myself - found your blog and it resolved my problem right away!

    Thanks for posting!

    ReplyDelete
  7. Thanks a lot !
    Merci, vraiment merci beaucoup !

    ReplyDelete
  8. Thank you! I wasted a ton of time trying to fix this too!

    ReplyDelete
  9. Thanks for posting this! I wasted a ton of time trying to fix this too but was pleased when I came across your post and was able to fix the issue quickly.

    ReplyDelete
  10. You've saved my bacon. Thank you!!!

    ReplyDelete
  11. Hi, I'm getting the same error, but I don't have the 'Unblock' under the Properties window. Is there any alternative (e.g. command line) to unblock this dll file? Thanks

    ReplyDelete
  12. Anon, the only thing I could think of would be to ensure you're logged in as an Admin account. I always am, and the button is always there..

    ReplyDelete
  13. Thank you brother, you helped me a lot!
    "English is bad to know" :))

    ReplyDelete

Post a Comment

Popular posts from this blog

GTD: Biphasic Sleep Experiment – Day 4

Privacy Online – How Much Would a “I’ll Google You” Get About You?

TDD – Getting Started with Test-Driven Development