views:

242

answers:

1

I have an assembly in the GAC which gets loaded when I'm debugging a web app. However, I've changed that assembly in the web app that I'm debugging but VS2008/Cassini is picking up the one in the GAC.

How do I make VS2008/Cassini use the one that I'm debugging?

+1  A: 

You could change the version of the updated assembly and ensure that the assembly reference in the web app fully qualifies the version.

JoshL