避免复制引用程序集的XML文件
2019-05-17 01:02 Format Deng 阅读(403) 评论(0) 编辑 收藏 举报VS在编译时,默认会复制所有引用程序集对应的XML文件到输出目录。
在项目中设置AllowedReferenceRelatedFileExtensions可以避免复制操作。
<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>