Dennis Jaheruddin
Dennis Jaheruddin

Reputation: 21563

Using deployment tool from command window

Currently I am developing a solution that requires interaction with external software. As a result I can only properly test it after I build the solution as a dll file.

Currently I take these steps

  1. type 'deploytool' (to open the deployment tool)
  2. click the button 'open project'
  3. Find and select the project that I want to open (always in the same location with the same name but apparently matlab does not remember this)
  4. Click the build button

Currently I do this several times per day and it is really simple, but simply annoying. Therefore I hope that someone can give me a way to automate step 2-4, perhaps using a script?

If this is not possible I would also appreciate a way to change the default opening folder for the deployment tool.

Upvotes: 0

Views: 958

Answers (1)

Gunther Struyf
Gunther Struyf

Reputation: 11168

help deploytool says you can specify the projectname and build option as a second argument:

deploytool -build projectname

Upvotes: 1

Related Questions