我的 Azure ADO 令牌本地存储在哪里?

Where is my Azure ADO token stored locally?

查看我的机器 nuget 配置,我可以看到我的 ADO 提要已注册,但其中没有 ADO 令牌:

(C:\Users\user\AppData\Roaming\NuGet\NuGet.config)

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
    <add key="Microsoft Visual Studio Offline Packages" value="C:\Program Files (x86)\Microsoft SDKs\NuGetPackages\" />
    <add key="dev.myfeed.com" value="https://pkgs.dev.azure.com/myfeed/_packaging/myfeed/nuget/v3/index.json" />
  </packageSources>
  <packageRestore>
    <add key="enabled" value="True" />
    <add key="automatic" value="True" />
  </packageRestore>
  <bindingRedirects>
    <add key="skip" value="False" />
  </bindingRedirects>
  <packageManagement>
    <add key="format" value="0" />
    <add key="disabled" value="False" />
  </packageManagement>
</configuration>

运行 我项目上的 dotnet restore 成功下载了一个仅存在于此提要中的包,我不明白它是如何成功的?提要需要令牌进行身份验证,而我的机器 NuGet.config 文件中没有令牌。它是否从其他地方检索到令牌?

Has it retrieved the token from somewhere else?

凭据存储在 Azure Artifacts Credential Provider. The Azure Artifacts Credential Provider automates the acquisition of credentials needed to restore NuGet packages as part of your .NET development workflow. We need to install the latest .NET Core SDK and credential provider first when we use dotnet with Azure Artifacts feeds.

这是我 运行 dotnet 还原并使用凭据提供程序验证时的示例。我需要打开浏览器并登录我的帐户: