When compiling an ASP.NET 2.0 App names MySite for deployment I get a series of assemblies that resemble something like "bin/APP_xyz123.dll", "bin/APP_xyz456.dll" and so on.
Everything works fine but if I make a small code change I have to update the entire site because the "_xyz123" and "_xyz456" part of the assembles names change with each new build.
What I desire is to have one assembly called MySite.dll that I can update as needed, right now there is no clear way to accomplisht this. Does anyone know a way I can create the desired outcome I want?