- 在项目的解决方案下新增
.tfignore
文件。文件内容如下:
\packages
- 在项目的解决方案下新增
.nuget
文件夹,并新增Nuget.config
文件,文件内容如下:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
</configuration>
说明:
.tfignore
文件主要是用于配置签入是要排除的文件夹。
如果不建立Nuget.config
文件并如上配置,在新增nuget引用时,源代码管理器依旧会将相关项识别为待签入项。