Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to specify MSbuild output folder?

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?

like image 905
fr21 Avatar asked Jul 05 '09 01:07

fr21


1 Answers

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

like image 182
JP Alioto Avatar answered Oct 10 '22 06:10

JP Alioto