CleanProject

From RAD Studio
Jump to: navigation, search

Go Up to Local GetIt Packages Actions Data Index

Cleans a project

Parameters

CleanProject uses the same parameters as the CompileProject action.

Examples

  • Example 1: Cleans a project.
CleanProject("packages\Delphi\AbbreviaD.dproj");
  • Example 2: Cleans a project in selected platforms.
CleanProject("packages\Delphi\AbbreviaD.dproj", "Android;Win64;Win32");
  • Example 3: Cleans a project only in Win32 platform.
CleanProject("packages\Delphi\AbbreviaD.dproj", "Win32");
  • Example 4: Cleans a project in all platforms in Debug configuration.
CleanProject("packages\Delphi\AbbreviaD.dproj", "", "Debug");
  • Example 5: Cleans a project in the selected platforms using the Release and Debug configuration.
CleanProject("packages\Delphi\AbbreviaD.dproj", "Android;Win64;Win32", "Release;Debug");

=See Also