ImportGroup Element

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

Contains a collection of Import elements that are grouped under an optional condition. For more information, see Import Element (MSBuild).

<Project>
<ImportGroup>

Syntax

<ImportGroup Condition="'String A' == 'String B'">  
    <Import ... />  
    <Import ... />  
</ImportGroup>  

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

Attribute Description
Condition Optional attribute.

The condition to be evaluated. For more information, see Conditions.

Child Elements

Element Description
Import Imports the contents of one project file into another project file.

Parent Elements

Element Description
Project Required root element of an MSBuild project file.

Remarks

Example

The following code example shows the ImportGroup element.

<Project xmlns="https://schemas.microsoft.com/developer/msbuild/2003">  
    <ImportGroup>  
        <Import Project="$(Targets1.targets) />  
        <Import Project="$(Targets2.targets) />  
    </ImportGroup>  
...  
</Project>  

See Also

Project File Schema Reference
Items