Getting/Setting Command Line Arguments via IDE Scripting?

Does anyone know how to get/set the Build Settings/Shared/Command Line Arguments via IDE Scripting? I want to be able to easily run selected unit tests. Our main app has parameters that can be given on the command line as to which tests to run. So, accessing the ProjectItem but I cannot figure out how to access the Command Line Arguments property. I’m not even sure it is, just hoping so.

Try setting the property called “CommandLineArgs”

Norman,

That sorta works. It allows me to get the command line args, but I can set the command line args.

  Print PropertyValue("CommandLineArgs")
  PropertyValue("CommandLineArgs") = "john"
  Print PropertyValue("CommandLineArgs")

The first dialog says “unit-test DateHelperTests”
The second says “unit-test DateHelperTests”