You can exclude the files by editing the project file to add the <AllowedReferenceRelatedFileExtensions> tag and supplying the file extensions you wish to include.
For me MSBuild is defaulting that to
AllowedReferenceRelatedFileExtensions =
.pdb;
.xml
So to remove the XML files set the following in the project file to only include .pdb files and (implicitly) exclude .xml:
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<AllowedReferenceRelatedFileExtensions>
.pdb
</AllowedReferenceRelatedFileExtensions>
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
</Project>