I'm trying to write a Visual Studio 2010 Extension to show an IronPython shell for debugging C# projects. So obviously I have a reference to IronPython.dll (and a bunch of others). I'm referencing IronPython 2.0.1 here.
My project compiles fine. When I debug it, a new instance of VS is started and all. But when I run the addin command, I get a System.FileNotFoundException for the IronPython.dll.
I did make sure the DLL is in the project output directory (bin/Debug). I'm guessing this is being run under another context, so the path resolution or whatever doesn't pick this up. Any ideas on what to do?