Thanks for the code, It works perfectly.
After trying it out a few times, I see that using the make command is just as easy as using the run command, except the lack of keyboard shortcut.
There is also a "make project" command which does the exe and dll at the same time, so the binary compatability thing shouldn't be something to worry about as far as design is concerned. I think I know how to do it though, edit the .dll properties for binary compatiability to the last version.
Another interesting thing I noticed is how much faster the code executes. I had a debug mode that collected a lot of data and drew it on the screen every frame. When entering this mode, I would get about a 1/2 drop in framerates in the IDE. With the compiled dll there is not even a noticable slowdown

not even a studder, ever.
I knew a compiled dll would be faster, and i've seen it increase performance in another project, but I never noticed this much before.
I have even been designing this project from the begining to run at 30 fps since there was going to be so much per frame code and action, I didn't want any slowdowns. It looks like a might be able to go back to 60 if I desire
Thanks for the help.