In case I’m not the last person on the planet to figure this out…
- In VS, click on File->Open->Project/Solution or press Ctl-Shift-O
- Select ipy.exe from wherever you put it
- Right click ipy.exe in Solution Explorer and select Properties
- In the Command Arguments box, type “-D” (to generate debug code) and the full path to the script you want to execute. If you want to drop into interactive mode after the script executes, also include a “-i”
- Open the script you specified in step 4 and place breakpoints as usual
- Run via Debug->Start Debugging or press F5
Thanks Srivatsn for helping me out with this.
Comments: