WishAssembly Redirection For The Compiler
We have assembly redirection for compiled assemblies, but is there such a thing for the compiler?
Spesifically, my problem is replacing a production version of a dll with a modified debug version, and then runing that. The issue is that I can't use the production dll and then replace it for debugging + assembly redirect, since on of th dll has a dependency on that modification.
I solved that issue by recompiling everything against the debug modified version, but that is a PITA. Is there a better way?
The problem right now is that the compiler will complain about mismatch types (can't convert from Foo.Bar to Foo.Bar), because they are of difference assemblyes.
More posts in "Wish" series:
- (23 Jun 2007) Distributable Windows-based Virtual Machines
- (14 Apr 2007) Reflector.PDB
- (21 Jul 2006) Assembly Redirection For The Compiler
- (31 Mar 2006) Reflector.Debugging
Comments
Comment preview