Updating only .dll of a reference in my ASP.NET Application
Posted
by Mike C.
on Stack Overflow
See other posts from Stack Overflow
or by Mike C.
Published on 2009-12-07T19:34:32Z
Indexed on
2010/06/14
18:32 UTC
Read the original article
Hit count: 242
.NET
|base-class-library
Hello, I have a deployed web application project that references my Utility.dll class library. I want to make a change to the Utlity.dll and roll only that .dll out. The problem is that when I do that, I get the following error when I try to launch my site:
Could not load file or assembly 'Utility, Version=1.0.0.0, Culture=neutral, PublicKeyToken=3766481cef20a9d1' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
Is there a setting I can change so I don't have to roll out the entire web application project - only the Utlity.dll? Thanks!
© Stack Overflow or respective owner