【发布时间】:2019-01-14 19:03:32
【问题描述】:
我在Azure Artifacts 创建了一个 NuGet 提要。我在我的项目中安装了NuGet.exe 和CredentialProvider.VSS.exe。我可以列出/获取/推送 NuGet 包。此时,完全没有问题。但我想清除由CredentialProvider.VSS.exe 创建的凭据缓存。我该怎么做?
【问题讨论】:
标签: azure-devops nuget azure-artifacts
我在Azure Artifacts 创建了一个 NuGet 提要。我在我的项目中安装了NuGet.exe 和CredentialProvider.VSS.exe。我可以列出/获取/推送 NuGet 包。此时,完全没有问题。但我想清除由CredentialProvider.VSS.exe 创建的凭据缓存。我该怎么做?
【问题讨论】:
标签: azure-devops nuget azure-artifacts
【讨论】:
How do you know that?我也尝试了很多方法来清除凭证,最后我从这个SO thread得到了想法。根据我的测试,它有效。
nuget.exe locals plugins-cache -clear 应该这样做。如果您还没有,您需要download nuget.exe。不幸的是,dotnet nuget locals 中似乎缺少 plugins-cache :(
【讨论】: