What is the best way to update ASP.NET web application dlls?

I have an ASP.NET web application that contains a dll in the / bin 'Example.dll' folder. If I don't have a mention of “Example.dll” in Web.config, can I just replace it with a newer version of “Example.dll” and the application will use it?

If not, what steps are needed?

+3
source share
2 answers

Yes, it is safe (provided that you were careful and did not make any changes), but here is a tip that I learned from bitter experience: do not back up the old version in the same folder. Even if you rename it like Example.dll0, it can still confuse the structure.

, .

+4

DLL ( -), DLL . , .

, , .

+1

Source: https://habr.com/ru/post/1733969/


All Articles