MAC OSX Mono Nuget 如何设置默认的 %AppData%\NuGet\NuGet.config
MAC OSX Mono Nuget how to set up a default %AppData%\NuGet\NuGet.config
我可以执行类似 -
mono --runtime=v4.0.30319 /Library/TeamCity/buildAgent/work/b0d2d3fefe88d393/.nuget/NuGet.exe' install '/Library/TeamCity/buildAgent/work/b0d2d3fefe88d393/something/packages.config' -source 'http://www.someurl.com/feed/' -RequireConsent -solutionDir '/Library/TeamCity/buildAgent/work/b0d2d3fefe88d393/'
告诉 mono Nuget 查看特定的 Nuget 源。
但假设由于某种原因我无法修改 nuget 命令行调用以添加 -source 参数,我如何使用默认配置文件按照(windows 变体)-
http://docs.nuget.org/consume/command-line-reference#install-command
ConfigFile (v2.5) The NuGet configuation file. If not specified, file %AppData%\NuGet\NuGet.config is used as configuration file.
所以,我可以从这里设置 "Package sources" -
https://docs.nuget.org/consume/nuget-config-settings
这种方法可以在 mac 上工作吗?
OS X 上 NuGet 配置文件的默认位置在用户的主目录中:
~/.config/NuGet/NuGet.Config
您应该可以根据文档向该文件添加 <packageSources>
设置。
如果文件不存在则创建文件。
我可以执行类似 -
mono --runtime=v4.0.30319 /Library/TeamCity/buildAgent/work/b0d2d3fefe88d393/.nuget/NuGet.exe' install '/Library/TeamCity/buildAgent/work/b0d2d3fefe88d393/something/packages.config' -source 'http://www.someurl.com/feed/' -RequireConsent -solutionDir '/Library/TeamCity/buildAgent/work/b0d2d3fefe88d393/'
告诉 mono Nuget 查看特定的 Nuget 源。
但假设由于某种原因我无法修改 nuget 命令行调用以添加 -source 参数,我如何使用默认配置文件按照(windows 变体)-
http://docs.nuget.org/consume/command-line-reference#install-command
ConfigFile (v2.5) The NuGet configuation file. If not specified, file %AppData%\NuGet\NuGet.config is used as configuration file.
所以,我可以从这里设置 "Package sources" -
https://docs.nuget.org/consume/nuget-config-settings
这种方法可以在 mac 上工作吗?
OS X 上 NuGet 配置文件的默认位置在用户的主目录中:
~/.config/NuGet/NuGet.Config
您应该可以根据文档向该文件添加 <packageSources>
设置。
如果文件不存在则创建文件。