Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
In a project file you can use wildcards to include all the files in one directory or a nested set of directories as inputs for a build. However, there might be one file in the directory or one directory in a nested set of directories that you do not want to include as input for a build. You can explicitly exclude that file or directory from the list of inputs. There may also be a file in a project that you only want to include under certain conditions. You can explicitly declare the conditions under which a file is included in a build.
Item lists are the input files for a build. The items that you want to include are declared either separately or as a group using the Include
attribute. For example:
<CSFile Include="Form1.cs"/>
<CSFile Include ="File1.cs;File2.cs"/>
<CSFile Include="*.cs"/>
<JPGFile Include="Images\**\*.jpg"/>
If you have used wildcards to include all the files in one directory or a nested set of directories as inputs for a build, there might be one or more files in the directory or one directory in the a nested set of directories that you do not want to include. To exclude an item from the item list, use the Exclude
attribute.
Use one of the following
Include
andExclude
attributes:<CSFile Include="*.cs" Exclude="Form2.cs"/>
- or -
<VBFile Include="*.vb" Exclude="Form2.vb"/>
Use one of the following
Include
andExclude
attributes:<CSFile Include="*.cs" Exclude="Form2.cs;Form3.cs"/>
- or -
<VBFile Include="*.vb" Exclude="Form2.vb;Form3.vb"/>
To include all .jpg files in subdirectories of the Images directory except those in the Version2 directory
Use the following
Include
andExclude
attributes:<JPGFile Include="Images\**\*.jpg" Exclude = "Images\**\Version2\*.jpg"/>
Note
You must specify the path for both attributes. If you use an absolute path to specify file locations in the
Include
attribute, you must also use an absolute path in theExclude
attribute; if you use a relative path in theInclude
attribute, you must also use a relative path in theExclude
attribute.
If there are items that you want to include, for example, in a Debug build but not a Release build, you can use the Condition
attribute to specify the conditions under which to include the item.
Use a
Condition
attribute similar to the following:<Compile Include="Formula.vb" Condition=" '$(Configuration)' == 'Release' " />
The following code example builds a project with all of the .cs files in the directory except Form2.cs.
<Project DefaultTargets="Compile"
xmlns="https://schemas.microsoft.com/developer/msbuild/2003" >
<PropertyGroup>
<builtdir>built</builtdir>
</PropertyGroup>
<ItemGroup>
<CSFile Include="*.cs Exclude="Form2.cs"/>
<Reference Include="System.dll"/>
<Reference Include="System.Data.dll"/>
<Reference Include="System.Drawing.dll"/>
<Reference Include="System.Windows.Forms.dll"/>
<Reference Include="System.XML.dll"/>
</ItemGroup>
<Target Name="PreBuild">
<Exec Command="if not exist $(builtdir) md $(builtdir)"/>
</Target>
<Target Name="Compile" DependsOnTargets="PreBuild">
<Csc Sources="@(CSFile)"
References="@(Reference)"
OutputAssembly="$(builtdir)\$(MSBuildProjectName).exe"
TargetType="exe" />
</Target>
</Project>