阻止.net-core在构建时不断添加文件夹的方法如下:
<ItemGroup>
<Compile Remove="FolderPath\**" />
<Content Remove="FolderPath\**" />
<EmbeddedResource Remove="FolderPath\**" />
<None Remove="FolderPath\**" />
</ItemGroup>
将"FolderPath"替换为你想要排除的文件夹路径。
FolderPath/
将"FolderPath"替换为你想要忽略的文件夹路径。
<ItemGroup Condition="!Exists('FolderPath')">
<Compile Include="FolderPath\**" />
<Content Include="FolderPath\**" />
<EmbeddedResource Include="FolderPath\**" />
<None Include="FolderPath\**" />
</ItemGroup>
这样,如果文件夹存在,则不会将其添加到构建中。
以上是阻止.net-core在构建时不断添加文件夹的几种方法,根据具体情况选择其中一种方法进行实施。在实施过程中,如果需要使用腾讯云相关产品,你可以查阅腾讯云官方文档或咨询腾讯云技术支持人员以获取更详细的信息和指导。
领取专属 10元无门槛券
手把手带您无忧上云