【发布时间】:2018-08-25 07:09:51
【问题描述】:
我看过很少的网络帖子和解决方案,但似乎不起作用。 我错过了显而易见的事情吗? 这就是我所拥有的
在解决方案级别,而不是包所在的位置 我有一个如下图所示的文件夹
.tfignore 包含以下内容
# Ignore NuGet Packages
*.nupkg
# Ignore the NuGet packages folder in the root of the repository. If needed, prefix 'packages'
# with additional folder names if it's not in the same folder as .tfignore.
packages
# Omit temporary files
project.lock.json
project.assets.json
*.nuget.props
nuget.config.xml 包含
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
</configuration>
当我尝试在 Visual Studio 2017 中签入项目时,它仍然显示所有包。
有人可以帮我解决我做错的事情吗?
谢谢
【问题讨论】: