NuGet.Config 文件位于 Visual Studio 项目中的什么位置?

Where is NuGet.Config file located in Visual Studio project?

我想知道 NuGet.Config 文件位于 Visual Studio 2017 项目中的什么位置?我试图在项目的根目录中创建自己的 NuGet.Config 文件,但我没有找到任何新的存储库(NuGet 源)。有人知道吗?

这是我试图为我的 .Net Core 项目实现的文件:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json" />
    <add key="AspNetCoreTools" value="https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
    <add key="NuGet" value="https://api.nuget.org/v3/index.json" />
  </packageSources>
</configuration>

Visual Studio 从解决方案根目录读取 NuGet.Config 个文件。尝试将它移到那里,而不是将它放在与项目相同的文件夹中。

您也可以将文件放在%appdata%\NuGet\NuGet.Config,它会在任何地方使用。

https://docs.microsoft.com/en-us/nuget/schema/nuget-config-file

除了已接受的答案外,我想补充一个信息,即 Visual Studio 2017 中的 NuGet 包位于项目文件本身中。即,右键单击项目 -> 编辑,以查找所有包引用条目。

有多个 nuget 包按以下顺序读取:

  1. 首先是NuGetDefaults.Config file。您会在 %ProgramFiles(x86)%\NuGet\Config.
  2. 中找到它
  3. 计算机级文件。
  4. 用户级文件。您会在 %APPDATA%\NuGet\nuget.config.
  5. 中找到它
  6. 任何名为 nuget.config 的文件,从驱动器的根目录开始,直到调用 nuget.exe 的目录。
  7. 调用时在 -configfile 选项中指定的配置文件 nuget.exe

您可以找到更多信息here

如果您使用代理,则必须编辑 Nuget.config 文件。

在Windows7和10中,这个文件在路径中:
C:\Users\YouUser\AppData\Roaming\NuGet.

包括设置:

<config>
  <add key = "http_proxy" value = "http://Youproxy:8080" />
  <add key = "http_proxy.user" value = "YouProxyUser" />
</config>