How to: Specify Which Target to Build First

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

A project file can contain one or more Target elements that define how the project is built. The Microsoft Build Engine (MSBuild) engine builds the first project it finds, and any dependencies, unless the project file contains a DefaultTargets attribute, an InitialTargets attribute, or a target is specified at the command line using the /target switch.

Using the InitialTargets Attribute

The InitialTargets attribute of the Project element specifies a target that will run first, even if targets are specified on the command line or in the DefaultTargets attribute.

To specify one initial target

  • Specify the default target in the InitialTargets attribute of the Project element. For example:

    <Project InitialTargets="Clean">

    You can specify more than one initial target in the InitialTargets attribute by listing the targets in order, and using a semicolon to separate each target. The targets in the list will be run sequentially.

To specify more than one initial target

  • List the initial targets, separated by semicolons, in the InitialTargets attribute of the Project element. For example, to run the Clean target and then the Compile target, type:

    <Project InitialTargets="Clean;Compile">

Using the DefaultTargets Attribute

The DefaultTargets attribute of the Project element specifies which target or targets are built if a target is not specified explicitly on the command line. If targets are specified in both the InitialTargets and DefaultTargets attributes and no target is specified on the command line, MSBuild runs the targets specified in the InitialTargets attribute followed by the targets specified in the DefaultTargets attribute.

To specify one default target

  • Specify the default target in the DefaultTargets attribute of the Project element. For example:

    <Project DefaultTargets="Compile">

    You can specify more than one default target in the DefaultTargets attribute by listing the targets in order, and using a semicolon to separate each target. The targets in the list will be run sequentially.

To specify more than one default target

  • List the default targets, separated by semicolons, in the DefaultTargets attribute of the Project element. For example, to run the Clean target and then the Compile target, type:

    <Project DefaultTargets="Clean;Compile">

Using the /target Switch

If a default target is not defined in the project file, or if you do not want to use that default target, you can use the command line switch /target to specify a different target. The target or targets specified with the /target switch are run instead of the targets specified by the DefaultTargets attribute. Targets specified in the InitialTargets attribute always run first.

To use a target other than the default target first

  • Specify the target as the first target using the /target command line switch. For example:

    msbuild file.proj /target:Clean

To use several targets other than the default targets first

  • List the targets, separated by semicolons or commas, using the /target command line switch. For example:

    msbuild <file name>.proj /t:Clean;Compile

See Also

MSBuild
Targets
How to: Clean a Build