Reputation: 3799
How can you force ASP.NET 1.1 to recompile its runtimes as in the ASP.NET Temporary Files location?
Upvotes: 3
Views: 6924
Reputation: 4474
I might be reading WAYYY to deeply into this problem, but if you are having problems with references just in case it helps try this:
Although disabling batch compilation is a performance hit.
Upvotes: 1
Reputation: 43855
To force a rebuild make a change to the web.config file (something as simple as a newline is enough) this forces a recompile.
Upvotes: 6
Reputation: 11243
Shutdown IIS (make sure the wpworker procs are killed), blow away the WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files and blow away any dlls in your own bin directory. Once you restart IIS it'll rebuild.
Upvotes: 1