vote up 1 vote down star
3

Hi,

When I execute delphi 2009 project using MSBuild command line, output always goes to C: drive

C:\MyProjects>MSbuild "C:\MyTestProject\Test.dproj" /t:Build /p:OutDir="C:\Output\bin\"

Why is this happening?

Thanks & Regards, Pavan.

flag

53% accept rate

2 Answers

vote up 1 vote down

I know the docs say otherwise, but try OutputPath instead of OutDir.

link|flag
Yeah OutputPath should be used instead of OutDir, the docs are wrong in this case. – Sayed Ibrahim Hashimi Jul 6 at 5:06
vote up 0 vote down

For Delphi projects you need to use DCC_ExeOutput to specify where the EXE should go.

C:\MyProjects>MSbuild "C:\MyTestProject\Test.dproj" /t:Build /p:DCC_ExeOutput="C:\Output\bin\"

Take a look inside Test.dproj for any other options you might want to specify.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.