我有一个Visual Studio 2008 C#/。NET 3.5项目与post构建任务ZIP的内容。然而,我发现我也得到引用程序集.pdb(调试)和.xml(文档)文件在我的输出目录(和ZIP)。
例如,如果MyProject.csproj引用YourAssembly.dll,并且YourAssembly.xml和YourAssembly.pdb文件在与DLL相同的目录中,它们将显示在我的输出目录(和ZIP)中。
我可以排除* .pdb当ZIP’ing但我不能覆盖排除* .xml文件,因为我有部署文件具有相同的扩展名。
有没有办法防止项目复制引用的程序集PDB和XML文件?
我希望能够在我的主应用程序中添加和删除引用的程序集,同时避免需要维护需要删除或排除的文件。
原文链接:https://www.f2er.com/xml/294109.html我挖掘通过Microsoft.Common.targets寻找可以工作的东西,并找到AllowedReferenceRelatedFileExtensions属性。它默认为.pdb; .xml所以我明确定义它在我的项目文件。 catch是你需要的东西(空格是不够的)否则它仍然会使用默认值。
<Project ...> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Anycpu' "> ... <AllowedReferenceRelatedFileExtensions> <!-- Prevent default XML and PDB files copied to output in RELEASE. Only *.allowedextension files will be included,which doesn't exist in my case. --> .allowedextension </AllowedReferenceRelatedFileExtensions> </PropertyGroup>