| title |
ImportGroup Element |
| description |
Learn how MSBuild uses the ImportGroup element to contain a collection of Import elements that are grouped under an optional condition. |
| ms.date |
03/13/2017 |
| ms.topic |
reference |
| dev_langs |
|
| helpviewer_keywords |
<ImportGroup> element [MSBuild] |
ImportGroup element [MSBuild] |
|
| author |
ghogen |
| ms.author |
ghogen |
| ms.subservice |
msbuild |
Contains a collection of Import elements that are grouped under an optional condition. For more information, see Import element (MSBuild).
<ImportGroup Condition="'String A' == 'String B'">
<Import ... />
<Import ... />
</ImportGroup>
The following sections describe attributes, child elements, and parent elements.
| Attribute |
Description |
Condition |
Optional attribute.
The condition to be evaluated. For more information, see Conditions. |
| Element |
Description |
| Import |
Imports the contents of one project file into another project file. |
| Element |
Description |
| Project |
Required root element of an MSBuild project file. |
The following code example shows the ImportGroup element.
<Project>
<ImportGroup>
<Import Project="$(Targets1.targets)" />
<Import Project="$(Targets2.targets)" />
</ImportGroup>
...
</Project>