Is there a way to prevent the CrashReporter dialogue?

I've finally been installing our bundle into /Applications, and have noticed that this causes a crash report dialogue to come up whenever one of the components crashes. Which, at this point, is still fairly often (that's what asserts in debug builds are for!). But I really don't want to keep manually dismissing those windows; is there a way to stop them from coming up? (I mean, I still want the crash reports created and logged, but I have my own scripts that go through there to get new ones and cleanup the old ones.)

Try:

defaults read com.apple.CrashReporter
defaults write com.apple.CrashReporter DialogType {none|basic|developer|server}
Is there a way to prevent the CrashReporter dialogue?
 
 
Q