views:

39

answers:

1

hi there,

i'm looking for a way to import an existing xpo-export via command-line into ax2009 aot and afterwards compile just this imported xpo. google tells me how to compile the whole aot by commandline, which takes quite long. so is there a way to import an xpo ( shared project ) and compile just these objects?

what possibilities are available, if the objects which should be imported are version-controlled by ax and are checked-in?

hoping for an easy way to automate optionally check-out, import, avoid overwrite?-questions, compile and run ;)

thanks in advance!

A: 

You can make you own startup command:

  1. Make a new class and extend SysStartupCmd
  2. Change the construct method of SysStartupCmd to call you class.
  3. Do whatever you need, this includes parsing the parm variable.

Also you will have to deal with version control by calling checkin/checkout in your code, handling compile errors etc.

There are no easy way, this is complicated stuff.

Jan B. Kjeldsen