Define build configuration for command line build in Codegear 2009 IDE

This is a continuation of the question . Is it possible to set build configuration for command line build in Codegear 2009?

For instance:

msbuild /property:BuildConfiguration=Release workspaceX.groupproj
+3
source share
1 answer

Yes. In fact, you are very close to your example. Use /p:Configuration="Name":

msbuild YourProj.cbproj /p:Configuration="Release Build"

Configuration="Name" ++ Builder config="Name" Delphi, , Delphi ++ Builder. ( , , . , , . : , "config" 2009 . , , 2010 .)

/t: , , ; /verbosity, ('quiet' , ++ Builder 6 MSBuild); , , msbuild /? . - :

msbuild YourProj.cbproj /p:Configuration="Release Build" /t:Make /verbosity:quiet /nologo

​​ script . , .

+6

All Articles