2022年5月26日:用C#生成.NET应用程序--创建新的.NET项目并使用依赖项(部分没看懂。)

5 篇文章 0 订阅

使用 NuGet 注册表中的依赖项可以更快地开发 .NET 应用程序。 了解如何管理项目的依赖 

简介

在.NET项目中添加包

.NET 附带许多核心库,可处理从文件管理到 HTTP 再到压缩文件各种任务。

确定是否需要包

获取更好的代码。

节省时间。

维护。

评估包

大小。

许可。

主动维护。

安装包

使用内置的.NET Core CLI安装包。典型的安装命令如下所示:dotnet add package <name of package>。

查找包

可以使用NuGet.org中的全局注册表查找 并下载其应用所需的包。

注册表。

文件。

NuGet注册表和dotnet工具包

.NET命令包

管理依赖项。

创建和发布包。

如何 安装包

使用 dotnet add package <dependency name> 命令,可安装要作为应用程序的一部分使用的常规依赖项。

安装后

安装的包在 .csproj 文件的 dependencies 部分中列出。 如果需要查看文件夹中的包,可以输入 dotnet list package

还原依赖项

清理依赖项

安装包

安装 Humanizer,编写几个数据操作,然后运行这些操作来查看Humanizer是否兑现了其承诺。

Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

Install the latest PowerShell for new features and improvements! https://aka.ms/PSWindows

PS C:\windows\system32> dotnet --list-sdks
6.0.203 [C:\Program Files\dotnet\sdk]
6.0.300 [C:\Program Files\dotnet\sdk]
PS C:\windows\system32>

确保列出了以6开头的版本。

创建示例.NET项目

为了设置 .NET 项目来处理依赖项,我们将使用 Visual Studio Code。

1、在 Visual Studio Code 中,选择“File”>“Open Folder”。

2、在选择的位置中创建名为 DotNetDependencies 的新文件夹,然后选择“选择文件夹”。

 3、从主菜单中选择“View”>“Terminal”,以便从 Visual Studio Code 中打开集成终端。

4、在终端窗口中

dotnet new console -f net6.0

此命令会在文件夹中创建一个 Program.cs 文件(内附已编写的基本“Hello World”程序),还将创建一个名为 DotNetDependencies.csproj 的 C# 项目文件。

 可以访问以下文件。

在终端窗口中,输入命令行来运行“Hello World”程序。

设置Visual Studio Code以进行.NET调试

Visual Studio Code安装C#扩展 

使用.NET Core工具添加NuGet包

1、打开 Program.cs。

2、通过运行以下命令安装Humanizer库。

dotnet add package Humanizer --version 2.7.9

Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

Install the latest PowerShell for new features and improvements! https://aka.ms/PSWindows

PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> dotnet add package Humanizer --version 2.7.9
  正在确定要还原的项目…
  Writing C:\Users\a-xiaobodou\AppData\Local\Temp\tmpD6AD.tmp
info : 正在将包“Humanizer”的 PackageReference 添加到项目“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”。
info : 正在还原 C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj 的包...
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer/index.json 1318 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer/2.7.9/humanizer.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer/2.7.9/humanizer.2.7.9.nupkg 1017 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.af/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.da/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.de/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.el/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.es/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.he/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.id/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.it/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.af/index.json 342 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/index.json 574 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/index.json 594 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/2.7.9/humanizer.core.bg.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/index.json 919 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.da/index.json 892 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/index.json 904 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.he/index.json 805 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/index.json 972 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/2.7.9/humanizer.core.ar.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.af/2.7.9/humanizer.core.af.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.el/index.json 1025 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.de/index.json 1079 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/2.7.9/humanizer.core.bn-bd.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.es/index.json 1078 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.da/2.7.9/humanizer.core.da.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/index.json 1027 毫秒      
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/2.7.9/humanizer.core.fa.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.he/2.7.9/humanizer.core.he.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/index.json 1173 毫秒      
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/index.json 1159 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/2.7.9/humanizer.core.cs.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/2.7.9/humanizer.core.fr-be.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.id/index.json 1134 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.es/2.7.9/humanizer.core.es.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.el/2.7.9/humanizer.core.el.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/2.7.9/humanizer.core.fi-fi.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.de/2.7.9/humanizer.core.de.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/index.json 1177 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.id/2.7.9/humanizer.core.id.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/index.json 1175 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.it/index.json 1132 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/index.json 1122 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/2.7.9/humanizer.core.fr.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/2.7.9/humanizer.core.hr.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/index.json 1160 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/index.json 1263 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/2.7.9/humanizer.core.ja.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/index.json 1157 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/index.json 1206 毫秒      
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/index.json 961 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.it/2.7.9/humanizer.core.it.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/index.json 788 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/index.json 1243 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/2.7.9/humanizer.core.hu.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/index.json 1315 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/2.7.9/humanizer.core.mt.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/index.json 1284 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/2.7.9/humanizer.core.nb.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/index.json 929 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/2.7.9/humanizer.core.lv.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/index.json 653 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/2.7.9/humanizer.core.ro.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/index.json 773 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/2.7.9/humanizer.core.pt.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/index.json 586 毫秒     
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/2.7.9/humanizer.core.nl.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/index.json 690 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/2.7.9/humanizer.core.nb-no.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/2.7.9/humanizer.core.ru.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/2.7.9/humanizer.core.ms-my.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/2.7.9/humanizer.core.sr-latn.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/index.json 539 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/2.7.9/humanizer.core.pl.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/index.json 529 毫秒  
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/2.7.9/humanizer.core.ar.2.7.9.nupkg 706 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/index.json 561 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/2.7.9/humanizer.core.sr.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/2.7.9/humanizer.core.bg.2.7.9.nupkg 840 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/2.7.9/humanizer.core.bn-bd.2.7.9.nupkg 709 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.da/2.7.9/humanizer.core.da.2.7.9.nupkg 739 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.af/2.7.9/humanizer.core.af.2.7.9.nupkg 749 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/2.7.9/humanizer.core.sk.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/index.json 679 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/2.7.9/humanizer.core.fa.2.7.9.nupkg 671 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/index.json 623 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/2.7.9/humanizer.core.tr.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/index.json 740 毫秒  
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/2.7.9/humanizer.core.sv.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.he/2.7.9/humanizer.core.he.2.7.9.nupkg 777 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/2.7.9/humanizer.core.fr-be.2.7.9.nupkg 718 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/2.7.9/humanizer.core.sl.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/2.7.9/humanizer.core.cs.2.7.9.nupkg 789 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.es/2.7.9/humanizer.core.es.2.7.9.nupkg 747 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/2.7.9/humanizer.core.uz-cyrl-uz.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/2.7.9/humanizer.core.fi-fi.2.7.9.nupkg 744 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.el/2.7.9/humanizer.core.el.2.7.9.nupkg 754 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/index.json 699 毫秒       
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/index.json 680 毫秒     
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.id/2.7.9/humanizer.core.id.2.7.9.nupkg 762 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/2.7.9/humanizer.core.uk.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.de/2.7.9/humanizer.core.de.2.7.9.nupkg 809 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/index.json 737 毫秒     
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/2.7.9/humanizer.core.vi.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/2.7.9/humanizer.core.fr.2.7.9.nupkg 767 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.it/2.7.9/humanizer.core.it.2.7.9.nupkg 651 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/2.7.9/humanizer.core.ja.2.7.9.nupkg 701 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/2.7.9/humanizer.core.mt.2.7.9.nupkg 626 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/2.7.9/humanizer.core.hu.2.7.9.nupkg 668 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/2.7.9/humanizer.core.hr.2.7.9.nupkg 808 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/2.7.9/humanizer.core.nb.2.7.9.nupkg 615 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/2.7.9/humanizer.core.uz-latn-uz.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/2.7.9/humanizer.core.zh-hans.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/2.7.9/humanizer.core.zh-hant.2.7.9.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/2.7.9/humanizer.core.zh-cn.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/2.7.9/humanizer.core.nb-no.2.7.9.nupkg 582 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/2.7.9/humanizer.core.ro.2.7.9.nupkg 668 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/2.7.9/humanizer.core.nl.2.7.9.nupkg 662 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/2.7.9/humanizer.core.pl.2.7.9.nupkg 626 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/2.7.9/humanizer.core.ru.2.7.9.nupkg 640 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/2.7.9/humanizer.core.ms-my.2.7.9.nupkg 641 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/2.7.9/humanizer.core.pt.2.7.9.nupkg 710 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/2.7.9/humanizer.core.lv.2.7.9.nupkg 742 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/2.7.9/humanizer.core.sr-latn.2.7.9.nupkg 654 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core/index.json 432 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core/2.7.9/humanizer.core.2.7.9.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/2.7.9/humanizer.core.sk.2.7.9.nupkg 560 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/2.7.9/humanizer.core.sl.2.7.9.nupkg 485 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/2.7.9/humanizer.core.uz-cyrl-uz.2.7.9.nupkg 437 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/2.7.9/humanizer.core.sr.2.7.9.nupkg 705 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/2.7.9/humanizer.core.sv.2.7.9.nupkg 519 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/2.7.9/humanizer.core.tr.2.7.9.nupkg 559 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/2.7.9/humanizer.core.uk.2.7.9.nupkg 418 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/2.7.9/humanizer.core.zh-hant.2.7.9.nupkg 307 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/2.7.9/humanizer.core.vi.2.7.9.nupkg 477 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/2.7.9/humanizer.core.zh-cn.2.7.9.nupkg 399 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/2.7.9/humanizer.core.zh-hans.2.7.9.nupkg 438 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/2.7.9/humanizer.core.uz-latn-uz.2.7.9.nupkg 492 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core/2.7.9/humanizer.core.2.7.9.nupkg 690 毫秒
info : 已通过内容哈希 Ogs+d48nUr5yeFy6S7LxilKcuD4u8lmJx4ahbGZiDkQD7ARcTRKEbkcwB6bFf8k87W80BVkNkMSQEVUP1rbGZg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.zh-CN 2.7.9 。
info : 已通过内容哈希 I1zelHgyJDZ2iTCHEmWrCa+PyFPEWDaYxPMpqPwZlgL2EvBHyJRwy0eJFYHHg+YAxcEVwgfsvzr8snhn/IDzrA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.zh-Hant 2.7.9 。
info : 已通过内容哈希 Eqd7xYf9WyAG5JA/Gz+vI8BWbZH88f/3D4QymqPzv1MD8VfZ+nFfg4xamGhXvqihRHmWShLiQx+eVoD5Vg6DNA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.zh-Hans 2.7.9 。
info : 已通过内容哈希 dUlwWOhqMz2y/uALmLIfey8pvV3tLdDyMfVZnPPqt9pNfihtnJWzojRCmf1+oMJ5O7uEmpxE1c5HafIQLd1fcQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ro 2.7.9 。
info : 已通过内容哈希 7NWBpe6YeZ6G1NVT2mgwB4RdZn9g9zbUtssae47TFuSUxCFE8SdSiiwXu6QG+twjuaa15B833HnqKMJejlNxcA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.af 2.7.9 。
info : 已通过内容哈希 kpRp7agDo5WaMSGBHgybQaQUhUy2EPe7p6KoIe020XF3TCcKMPfVmIcm6m4sVwdXjaIWfkWhkPBmVwKNfcmovg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.bg 2.7.9 。
info : 已通过内容哈希 CvBPqAgYcvRCDgtHi9pUdPpZqWGyqfJe02qDugMCy4/xia+q0xm/xxqTO55aZkJapdgqrvHb0I5u+sHLzovp+Q== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core 2.7.9 。
info : 已通过内容哈希 2SrkqJ26woxPW8Zc5lHXJX7nftouDnhFbMpDIYdkb5itNSJzPxl3AkXLHlh5WyfauH7r/p29WHBlik4A4Skq+A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ar 2.7.9 。
info : 已通过内容哈希 cnIWMLmibmotgv13Jz0pA5ZrS4pczuq3SE2BBOmWnZNBeypUJCM82Gu1LrfjFy5ZxIPGPVzlvHt0ejo2WrbQVw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer 2.7.9 。
info : 已通过内容哈希 h5oChbNlv+qgUBOMf36u5cQMhXAKPbRh2cRXC2sgB267nDhtKz0531hRrWY0FlsjYATK92s6KmJtq8eoLmoJuw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.bn-BD 2.7.9 。
info : 已通过内容哈希 M5/hzNDPJD/Owp5S30LqBwukj8WmxA8U0XJIK9BEpYOyuuegsp8W4RaCvj79BNWWkjayBjDjHmq1f4E2UvtCgg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.pt 2.7.9 。
info : 已通过内容哈希 afdXXIkcKuhSxToZv3BiFj9pjPV+Wn/bbQhJHDKUBPecJRM63/fRhP+O6XhSBp4nzfAu9qgOUopzSk4yAbGVxg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.cs 2.7.9 。
info : 已通过内容哈希 H7Okf6sb8KCxq1mfGddgzeM/X9u1VZ5eQhL4NyqP7AsxllUVEittCHkdZpOKq1ZgdKIC/YCmLEF3KbDAwm6PiQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.da 2.7.9 。
info : 已通过内容哈希 8GHFG4vjHrkJauZxfrySIKR7uIFi7E28IGtJ2rhuPWrXZF7ERvj8o5ByuSKBk6/bNKdnOQ0RSyA3VAPG1JGpPQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.uz-Latn-UZ 2.7.9 。       
info : 已通过内容哈希 jeGA4WzCQeFKgT4Y1SdgT5zGPAwDP2LMjK7btRyO7X6KFfZ6vHZ8vw01yO1ra2NfeFF7clI6Bi/bP7CcF9Gseg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.uz-Cyrl-UZ 2.7.9 。       
info : 已通过内容哈希 lcLh5EkLNanMtZhC5XNQP/so+QiktIrIXoJCO8YFe2ZUdgmIGT5GDTrBbdgA2aHTTOAHqrtxGnqkODe1cQL/bA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.vi 2.7.9 。
info : 已通过内容哈希 SNMNRp3GklOpVFwFXEMaUggCR27rVbD2z1CPmSVL+2RlIHcdrdNbrxRX8neKxzl1Enmue550Gg9ipYRTrZmF3Q== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.pl 2.7.9 。
info : 已通过内容哈希 mc5t7BVXYBTn7jymWtHGSdZim5zg9RyCMrl1+yIxiB74KPUH3VD5WUoIuB0HGc9g29SNl37jj7curx9dX8AaUg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.es 2.7.9 。
info : 已通过内容哈希 e0yPBy56+mOiUBV99a7H4nZYSh5mGR1/dW/Z6pBmLftEBnusDn850jrMJ/u2aFh5Vj8tipB0/DoSd3jp/JKM7A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.tr 2.7.9 。
info : 已通过内容哈希 v//DZRFjcrWMFD/ssGKm/9ldIqvKrPMC6yyavsF3bdSH+U92XZwJsNWdMh6tR4tjZCnpSTGjpeT11G0wRLjWKA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.de 2.7.9 。
info : 已通过内容哈希 1q5s+UWN79g+bXshpsdjEb1oVORg+FzNpayR1jup8T2U7jtW2AIM5A9Uol+EGazZzgbt2rwluCtvUjNUeYkmaQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sr 2.7.9 。
info : 已通过内容哈希 F4lxJn9HCRKxUs0ZI83trIb9ipb1Urzv3P6Og3fsYL1tXvjlbx8XWRPIGdbbCQIYNyYPSvyohCGs/yxZCLhtLA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fr-BE 2.7.9 。
info : 已通过内容哈希 PJlXYwzfElGAkv74VlIQK3N2Vs2JPCBtDtvMw7G6YVDp2ZTeKbFQs31K8q93Sz7N8Bpt01OPho7DK7KO1UUYxQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.hr 2.7.9 。
info : 已通过内容哈希 oOBrpVFUcLw+oJ3N2W+gtKoU9XuvmSbGRbmnqI+cKaLoMqxVvUw+Er3btaJ9UMkYS5zv7N/zhewWPP4uZBWRig== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sl 2.7.9 。
info : 已通过内容哈希 68QjBxLIv9by0uAfCAr8d7+Giv0m8j21lixv/pEdo21/dJfPZoBvTXp9eLhww3KwPZ1BkjJoY8an637Hlsmmtw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fr 2.7.9 。
info : 已通过内容哈希 Bp8XnGr8OWaRmYemcuKpU6jrA9xrx8TQIq9wad7VIx89VVIbnilCYY68EqsmPHa9wNJq+gpglHPZbKEr0CNKcA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.el 2.7.9 。
info : 已通过内容哈希 J5BSJO0Gm2g8M/nAnii4zOIg0Tk4RjwbKvhvSjzaPm8dZGCZvEWVmYuQ7CFNezEfA0EGSmKnlsZRoy2TVN2MRA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sr-Latn 2.7.9 。
info : 已通过内容哈希 xwIXhOf7vSYCc3s/mBRU/1PxOcOFgC/hYY3IjHR986YDbzUOoGlpt4Cz2inysMfK3fceTQKQny/0rtbxvMzhAg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sv 2.7.9 。
info : 已通过内容哈希 pl6o8wsfIoiRzBK/RXwuVIZNj/UKc2RPgFdpawbOXpQFGkUY1/lTBqQo4zrbM06U/OAWc3R4ZnaPiNSNAs0o3w== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fa 2.7.9 。
info : 已通过内容哈希 lc0Z4pIbzH9bNAbd+3CpG/gt74O8ywZZjlWut9xnNjvcrCi9S6Dv9zk5r/CLGXRPxuzK1/HeQUcBmReW15geHg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.he 2.7.9 。
info : 已通过内容哈希 i9meHhQ2J3byqatNPr/8uTLIdV9pR/My63b4Hdk4GaiF4ibeAb3ZAGiBSb8whCE0AtM6586EE2Nxkc0xsCfz/A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.it 2.7.9 。
info : 已通过内容哈希 8s6LdUjCR+b9K3IC25d68VikDh5d9HKWxnZngiVLfPlyMa0UYX9GRAynN/9LWRoOiCL4QRxMeeZYWgEbCK7pcw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.uk 2.7.9 。
info : 已通过内容哈希 2RwYeRYTtI0eT4vbbxYE7bwKK/jJCrG/WVk1KAWA1+AsbPpakqkedpuMq1VMlx1GYg7IK4FrA+nTfYqLO42IOQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.lv 2.7.9 。
info : 已通过内容哈希 GlmHze9WVElfWK2gh361/eLx5r0XDyTY7K/0VdOpV0tIesyNpOqibtzJxt6JCTJk3I0XXxrfU7tPkv7nBkEpzQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fi-FI 2.7.9 。
info : 已通过内容哈希 AoUiq+peyhTZURaHcTzeYcwIWp1pmDS5iWY3opSrS/KdhP2HKlLWjf+ofcFhsDBgsqMMhT+LF4PMJ1qj6NVcFQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.mt 2.7.9 。
info : 已通过内容哈希 lB5a6UoclIfS0zHvczEzoWjdkUnS+aS4UibHt5bQWNTZgzxJTSVYe1X8/L9usSRk6h1WHy4O47mplfwdCtEsIg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.nl 2.7.9 。
info : 已通过内容哈希 4hLoqzUwosPieibLZAR5Q5NHYLt4bgiBRtvX13m+nAbKfnboinJlgS0bMmb1pWzzIg7WB1qOCUVtEdVWstheBw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.hu 2.7.9 。
info : 已通过内容哈希 +C6+xxs3/So+BjSRYbi6LqBU6J9/UDI1bRnv43gOauVop0gWrHZOg/J44/CL2yiD7l6SOY4VLtYAJDxONsXklQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sk 2.7.9 。
info : 已通过内容哈希 2fQtt7WMsjMSO2pFzC/vTx6NLpd7BYW0JLjAQkHdEb43omWh5oWJ02Y81uvnw/AUn0KHBL0nf8KBIEthwvXoqQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ru 2.7.9 。
info : 已通过内容哈希 EpDL9LlyWNC+/Kk1f4cA8goiFgrSQ2evpNYRzUCJCSSmA5F2OR7owkGiwWtB3nNS/SRkrC2ouQBwiXPj8bkQHg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.nb-NO 2.7.9 。
info : 已通过内容哈希 pP0hRXWjewxA4TwEE91VWfnARMRI62GvatwoeXIaSWJLNzx3vGhG+ZoJRMuFJjsw48SOFgkqI8Q7vdJRTyxwIQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ja 2.7.9 。
info : 已通过内容哈希 Bm+3Gsk1jjwyRuYp0rRSRPawCtP4/D4Fk5uXJivNGibsScvyuaets8kBQxD/SyJjIZLrRErN5Tq7YPyeUADD3w== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.nb 2.7.9 。
info : 已通过内容哈希 6O9CdO239ddC2inn32ialw1BEkBOHoBoHhkaw8x114SlnYEDRaS9a+GRhJZ0d6s3H3IUznbk3qv7sSqc8XI67g== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ms-MY 2.7.9 。
info : 已通过内容哈希 0ynKnZhpOaaeQ9x60BDVrS4w83CWTvDnAoALUt9dxtbmQDFsMkcyJBP6x1ACSLYcrh6/AJ0Jt1KzHjaw/qmjOQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.id 2.7.9 。
info : 包“Humanizer”与项目“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”中指定的所有框架均兼容。
info : 包“Humanizer”(版本为 2.7.9)的 PackageReference 已添加到文件“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”。
info : 将资产文件写入磁盘。路径: C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\obj\project.assets.json
log  : 已还原 C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj (用时 14.16 sec)。
PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> 

打开 DotNetDependencies.csproj 文件并找到 ItemGroup 部分。

3、在 Program.cs 文件顶部添加以下内容来初始化 Humanizer。

using Humanizer;

Console.WriteLine("Hello, World!");

4、将以下内容添加到 Program.cs 文件底部的 Console.WriteLine("Hello, World!"); 下。

static void HumanizeQuantities()
{
    Console.WriteLine("case".ToQuantity(0));
    Console.WriteLine("case".ToQuantity(1));
    Console.WriteLine("case".ToQuantity(5));
}

static void HumanizeDates()
{
    Console.WriteLine(DateTime.UtcNow.AddHours(-24).Humanize());
    Console.WriteLine(DateTime.UtcNow.AddHours(-2).Humanize());
    Console.WriteLine(TimeSpan.FromDays(1).Humanize());
    Console.WriteLine(TimeSpan.FromDays(16).Humanize());
}

5、将 Console.WriteLine("Hello, World!"); 替换为以下代码:

Console.WriteLine("Quantities:");
HumanizeQuantities();

Console.WriteLine("\nDate/Time Manipulation:");
HumanizeDates();

6、通过在终端中运行以下命令来运行应用程序。

PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> dotnet run
Quantities:
0 cases
1 case
5 cases

Date/Time Manipulation:
昨天
2 小时前
1 天
2 周
PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> 

管理.NET项目中的依赖项更新

更新类型

是否正确配置了项目。

安全问题。

使用语义化版本控制 

主版本。

次要版本。

修补程序版本。

更新方法

主版本。

次要版本。

修补程序版本。

配置项目文件以进行更新

查找和更新过时的包

dotnet list package --outdated命令列出了已过时的包。

PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> dotnet list package --outdated

使用了以下源:
   https://api.nuget.org/v3/index.json
   C:\Program Files (x86)\Microsoft SDKs\NuGetPackages\

项目“DotNetDependencies”具有以下针对其包的更新
   [net6.0]: 
   顶级包              已请求     已解决     最新    
   > Humanizer      2.7.9   2.7.9   2.14.1

PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> 

 

以下是输出中列名称的含义:

  • Requested. 已指定的版本或版本范围。
  • Resolved. 已为项目下载的、与指定版本匹配的实际版本。
  • Latest. 可从 NuGet 更新的最新版本。

建议的工作流是按以下顺序运行这些命令:

  1. 运行 dotnet list package --outdated。 此命令可列出所有已过时的包。 它通过 RequestedResolved 和 Latest 列提供信息。
  2. 运行 dotnet add package <package name>。 如果运行此命令,它将尝试更新到最新版本。 你可选择传入 --version=<version number/range>

管理.NET项目中的依赖项更新

在应用中使用的依赖项可经常更新,并且可能包含新功能、bug 修复和关键安全更新程序。 你创建的应用很小,只有一个依赖项。 更新它应该非常简单。 若要利用最新功能,请查看是否可以更新应用。

升级应用依赖项

1、在 DotNetDependencies.csproj 文件中,查看 dependencies

<ItemGroup>
    <PackageReference Include="Humanizer" Version="2.7.9" />
</ItemGroup>

 

2、要查看安装的依赖项,请运行以下命令。

dotnet list package

 

3、要查看已过时的依赖项,请运行以下命令。

dotnet list package --outdated

 要检查预发行包,请向前面的命令追加 --include-prerelease

dotnet list package --outdated --include-prerelease

 

4、要安装最新版本, 请运行以下命令。

dotnet add package Humanizer

PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> dotnet add package Humanizer
  正在确定要还原的项目…
  Writing C:\Users\a-xiaobodou\AppData\Local\Temp\tmpDDB8.tmp
info : 正在将包“Humanizer”的 PackageReference 添加到项目“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”。
info :   CACHE https://api.nuget.org/v3/registration5-gz-semver2/humanizer/index.json
info : 正在还原 C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj 的包...
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer/index.json 173 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer/2.14.1/humanizer.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer/2.14.1/humanizer.2.14.1.nupkg 191 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.af/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.az/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.da/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.de/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.el/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.es/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.he/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hy/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.id/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.is/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.it/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ko-kr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ku/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.af/index.json 206 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.af/2.14.1/humanizer.core.af.2.14.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.th-th/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.az/index.json 350 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/index.json 358 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.az/2.14.1/humanizer.core.az.2.14.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/2.14.1/humanizer.core.ar.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/index.json 377 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.es/index.json 360 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.es/2.14.1/humanizer.core.es.2.14.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/2.14.1/humanizer.core.bg.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/index.json 414 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.el/index.json 399 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/index.json 393 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.da/index.json 415 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/2.14.1/humanizer.core.cs.2.14.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.el/2.14.1/humanizer.core.el.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/index.json 432 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/index.json 370 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/2.14.1/humanizer.core.fa.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.de/index.json 419 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.da/2.14.1/humanizer.core.da.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/index.json 370 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/2.14.1/humanizer.core.fi-fi.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/index.json 369 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.de/2.14.1/humanizer.core.de.2.14.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/2.14.1/humanizer.core.fr-be.2.14.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/2.14.1/humanizer.core.bn-bd.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.he/index.json 383 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hy/index.json 370 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/index.json 293 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/2.14.1/humanizer.core.fr.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.is/index.json 323 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/2.14.1/humanizer.core.ja.2.14.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.he/2.14.1/humanizer.core.he.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/index.json 385 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.it/index.json 306 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.is/2.14.1/humanizer.core.is.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/index.json 299 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/2.14.1/humanizer.core.hu.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ko-kr/index.json 306 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.it/2.14.1/humanizer.core.it.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/index.json 399 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ko-kr/2.14.1/humanizer.core.ko-kr.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.id/index.json 384 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hy/2.14.1/humanizer.core.hy.2.14.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/2.14.1/humanizer.core.ms-my.2.14.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.id/2.14.1/humanizer.core.id.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ku/index.json 329 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/index.json 325 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/2.14.1/humanizer.core.hr.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/index.json 320 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/index.json 319 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ku/2.14.1/humanizer.core.ku.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/index.json 302 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/2.14.1/humanizer.core.mt.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/index.json 263 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/2.14.1/humanizer.core.nb.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/index.json 285 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/2.14.1/humanizer.core.nl.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/index.json 301 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/2.14.1/humanizer.core.lv.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/index.json 273 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/2.14.1/humanizer.core.sk.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/index.json 302 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/2.14.1/humanizer.core.pt.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.af/2.14.1/humanizer.core.af.2.14.1.nupkg 337 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/2.14.1/humanizer.core.pl.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/index.json 363 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/2.14.1/humanizer.core.ru.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/index.json 279 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/index.json 295 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/2.14.1/humanizer.core.nb-no.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/index.json 318 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/2.14.1/humanizer.core.ro.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.th-th/index.json 293 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/2.14.1/humanizer.core.sr.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/index.json 324 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/2.14.1/humanizer.core.sl.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/index.json 269 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.th-th/2.14.1/humanizer.core.th-th.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/index.json 262 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/2.14.1/humanizer.core.sv.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/index.json 259 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/2.14.1/humanizer.core.sr-latn.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.az/2.14.1/humanizer.core.az.2.14.1.nupkg 275 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/2.14.1/humanizer.core.ar.2.14.1.nupkg 263 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/2.14.1/humanizer.core.tr.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/index.json 270 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/2.14.1/humanizer.core.uz-cyrl-uz.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/2.14.1/humanizer.core.bg.2.14.1.nupkg 255 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/index.json 274 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/2.14.1/humanizer.core.uz-latn-uz.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.es/2.14.1/humanizer.core.es.2.14.1.nupkg 276 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/index.json 284 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/2.14.1/humanizer.core.zh-hant.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/index.json 292 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/index.json 307 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/2.14.1/humanizer.core.vi.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/2.14.1/humanizer.core.cs.2.14.1.nupkg 331 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.da/2.14.1/humanizer.core.da.2.14.1.nupkg 328 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/2.14.1/humanizer.core.fa.2.14.1.nupkg 336 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/2.14.1/humanizer.core.uk.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.el/2.14.1/humanizer.core.el.2.14.1.nupkg 374 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/2.14.1/humanizer.core.fi-fi.2.14.1.nupkg 369 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/2.14.1/humanizer.core.fr-be.2.14.1.nupkg 365 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/2.14.1/humanizer.core.bn-bd.2.14.1.nupkg 359 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/2.14.1/humanizer.core.zh-cn.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/2.14.1/humanizer.core.ja.2.14.1.nupkg 373 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/2.14.1/humanizer.core.zh-hans.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.it/2.14.1/humanizer.core.it.2.14.1.nupkg 380 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.is/2.14.1/humanizer.core.is.2.14.1.nupkg 385 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.he/2.14.1/humanizer.core.he.2.14.1.nupkg 390 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/2.14.1/humanizer.core.hu.2.14.1.nupkg 385 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ko-kr/2.14.1/humanizer.core.ko-kr.2.14.1.nupkg 376 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/2.14.1/humanizer.core.hr.2.14.1.nupkg 386 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ku/2.14.1/humanizer.core.ku.2.14.1.nupkg 394 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hy/2.14.1/humanizer.core.hy.2.14.1.nupkg 408 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.id/2.14.1/humanizer.core.id.2.14.1.nupkg 407 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/2.14.1/humanizer.core.nb.2.14.1.nupkg 386 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/2.14.1/humanizer.core.mt.2.14.1.nupkg 391 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/2.14.1/humanizer.core.lv.2.14.1.nupkg 384 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/2.14.1/humanizer.core.nl.2.14.1.nupkg 388 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.de/2.14.1/humanizer.core.de.2.14.1.nupkg 470 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/2.14.1/humanizer.core.sk.2.14.1.nupkg 374 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/2.14.1/humanizer.core.fr.2.14.1.nupkg 450 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core/index.json 336 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/2.14.1/humanizer.core.ru.2.14.1.nupkg 362 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/2.14.1/humanizer.core.ro.2.14.1.nupkg 339 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/2.14.1/humanizer.core.pt.2.14.1.nupkg 408 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/2.14.1/humanizer.core.pl.2.14.1.nupkg 375 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/2.14.1/humanizer.core.nb-no.2.14.1.nupkg 418 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/2.14.1/humanizer.core.sr-latn.2.14.1.nupkg 363 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/2.14.1/humanizer.core.ms-my.2.14.1.nupkg 485 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/2.14.1/humanizer.core.tr.2.14.1.nupkg 349 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/2.14.1/humanizer.core.uz-cyrl-uz.2.14.1.nupkg 335 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/2.14.1/humanizer.core.sr.2.14.1.nupkg 371 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/2.14.1/humanizer.core.uz-latn-uz.2.14.1.nupkg 328 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/2.14.1/humanizer.core.sl.2.14.1.nupkg 378 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/2.14.1/humanizer.core.zh-hant.2.14.1.nupkg 333 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/2.14.1/humanizer.core.zh-cn.2.14.1.nupkg 209 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/2.14.1/humanizer.core.vi.2.14.1.nupkg 301 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/2.14.1/humanizer.core.uk.2.14.1.nupkg 265 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/2.14.1/humanizer.core.sv.2.14.1.nupkg 483 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.th-th/2.14.1/humanizer.core.th-th.2.14.1.nupkg 505 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg 181 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/2.14.1/humanizer.core.zh-hans.2.14.1.nupkg 364 毫秒
info : 已通过内容哈希 TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.uz-Cyrl-UZ 2.14.1 。
info : 已通过内容哈希 WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.zh-Hans 2.14.1 。
info : 已通过内容哈希 eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.th-TH 2.14.1 。
info : 已通过内容哈希 VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.zh-Hant 2.14.1 。
info : 已通过内容哈希 2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.uk 2.14.1 。
info : 已通过内容哈希 /kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.uz-Latn-UZ 2.14.1 。
info : 已通过内容哈希 rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sr 2.14.1 。
info : 已通过内容哈希 Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sk 2.14.1 。
info : 已通过内容哈希 l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sl 2.14.1 。
info : 已通过内容哈希 zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ru 2.14.1 。
info : 已通过内容哈希 lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core 2.14.1 。
info : 已通过内容哈希 rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.vi 2.14.1 。
info : 已通过内容哈希 uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.zh-CN 2.14.1 。
info : 已通过内容哈希 E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sv 2.14.1 。
info : 已通过内容哈希 nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sr-Latn 2.14.1 。
info : 已通过内容哈希 rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.tr 2.14.1 。
info : 已通过内容哈希 /FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer 2.14.1 。
info : 已通过内容哈希 Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fi-FI 2.14.1 。
info : 已通过内容哈希 e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.es 2.14.1 。
info : 已通过内容哈希 nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fa 2.14.1 。
info : 已通过内容哈希 psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ro 2.14.1 。
info : 已通过内容哈希 o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fr-BE 2.14.1 。
info : 已通过内容哈希 U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.bn-BD 2.14.1 。
info : 已通过内容哈希 jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.cs 2.14.1 。
info : 已通过内容哈希 3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ar 2.14.1 。
info : 已通过内容哈希 S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.bg 2.14.1 。
info : 已通过内容哈希 9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.de 2.14.1 。
info : 已通过内容哈希 BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.af 2.14.1 。
info : 已通过内容哈希 5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.da 2.14.1 。
info : 已通过内容哈希 2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fr 2.14.1 。
info : 已通过内容哈希 Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.el 2.14.1 。
info : 已通过内容哈希 8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.az 2.14.1 。
info : 已通过内容哈希 8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.pt 2.14.1 。
info : 已通过内容哈希 E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.lv 2.14.1 。
info : 已通过内容哈希 hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.hu 2.14.1 。
info : 已通过内容哈希 vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ms-MY 2.14.1 。
info : 已通过内容哈希 pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.mt 2.14.1 。
info : 已通过内容哈希 FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.he 2.14.1 。
info : 已通过内容哈希 R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.is 2.14.1 。
info : 已通过内容哈希 vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ku 2.14.1 。
info : 已通过内容哈希 TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ja 2.14.1 。
info : 已通过内容哈希 mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.nb 2.14.1 。
info : 已通过内容哈希 chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.hr 2.14.1 。
info : 已通过内容哈希 AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.nb-NO 2.14.1 。
info : 已通过内容哈希 CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ko-KR 2.14.1 。
info : 已通过内容哈希 4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.id 2.14.1 。
info : 已通过内容哈希 sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.hy 2.14.1 。
info : 已通过内容哈希 jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.it 2.14.1 。
info : 已通过内容哈希 17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.pl 2.14.1 。
info : 已通过内容哈希 24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.nl 2.14.1 。
info : 包“Humanizer”与项目“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”中指定的所有框架均兼容。
info : 包“Humanizer”(版本为“2.14.1”)的 PackageReference 已在文件“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”中更新。
info : 将资产文件写入磁盘。路径: C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\obj\project.assets.json
log  : 已还原 C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj (用时 6.06 min)。
PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> 

输出应类似于以下输出。

info : PackageReference for package 'Humanizer' version '2.11.10' updated in file 'C:\Users\username\Desktop\DotNetDependencies\DotNetDependencies.csproj'.

该输出说明项目依赖项已更新。

如果要升级到特定版本的依赖项,可追加 --version 参数并指定特定版本。

dotnet add package Humanizer --version 2.11.10

PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> dotnet add package Humanizer --version 2.11.10
  正在确定要还原的项目…
  Writing C:\Users\a-xiaobodou\AppData\Local\Temp\tmp88E2.tmp
info : 正在将包“Humanizer”的 PackageReference 添加到项目“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”。
info : 正在还原 C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj 的包...
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer/2.11.10/humanizer.2.11.10.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer/2.11.10/humanizer.2.11.10.nupkg 302 毫秒
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.af/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.af/2.11.10/humanizer.core.af.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/2.11.10/humanizer.core.ar.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.az/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.az/2.11.10/humanizer.core.az.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/2.11.10/humanizer.core.bg.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/2.11.10/humanizer.core.bn-bd.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/2.11.10/humanizer.core.cs.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.da/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.da/2.11.10/humanizer.core.da.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.de/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.de/2.11.10/humanizer.core.de.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.el/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.el/2.11.10/humanizer.core.el.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.es/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.es/2.11.10/humanizer.core.es.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/2.11.10/humanizer.core.fa.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/2.11.10/humanizer.core.fi-fi.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/2.11.10/humanizer.core.fr.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/2.11.10/humanizer.core.fr-be.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.he/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.he/2.11.10/humanizer.core.he.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/2.11.10/humanizer.core.hr.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/2.11.10/humanizer.core.hu.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.hy/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.hy/2.11.10/humanizer.core.hy.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.id/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.id/2.11.10/humanizer.core.id.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.it/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.it/2.11.10/humanizer.core.it.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/2.11.10/humanizer.core.ja.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.ko-kr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ko-kr/2.11.10/humanizer.core.ko-kr.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.ku/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ku/2.11.10/humanizer.core.ku.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/2.11.10/humanizer.core.lv.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/2.11.10/humanizer.core.ms-my.2.11.10.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.af/2.11.10/humanizer.core.af.2.11.10.nupkg 305 毫秒
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/2.11.10/humanizer.core.mt.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/2.11.10/humanizer.core.nb.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/2.11.10/humanizer.core.nb-no.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/2.11.10/humanizer.core.nl.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/2.11.10/humanizer.core.pl.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ar/2.11.10/humanizer.core.ar.2.11.10.nupkg 350 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/2.11.10/humanizer.core.pt.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/2.11.10/humanizer.core.ro.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core/2.11.10/humanizer.core.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.az/2.11.10/humanizer.core.az.2.11.10.nupkg 398 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/2.11.10/humanizer.core.ru.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/2.11.10/humanizer.core.sk.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/2.11.10/humanizer.core.sl.2.11.10.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ja/2.11.10/humanizer.core.ja.2.11.10.nupkg 221 毫秒
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.id/2.11.10/humanizer.core.id.2.11.10.nupkg 268 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.it/2.11.10/humanizer.core.it.2.11.10.nupkg 252 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bn-bd/2.11.10/humanizer.core.bn-bd.2.11.10.nupkg 425 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.da/2.11.10/humanizer.core.da.2.11.10.nupkg 414 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.cs/2.11.10/humanizer.core.cs.2.11.10.nupkg 422 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/2.11.10/humanizer.core.sr.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/2.11.10/humanizer.core.sr-latn.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/2.11.10/humanizer.core.sv.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.th-th/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.de/2.11.10/humanizer.core.de.2.11.10.nupkg 448 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.th-th/2.11.10/humanizer.core.th-th.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/2.11.10/humanizer.core.tr.2.11.10.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.el/2.11.10/humanizer.core.el.2.11.10.nupkg 449 毫秒
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fi-fi/2.11.10/humanizer.core.fi-fi.2.11.10.nupkg 427 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/2.11.10/humanizer.core.uk.2.11.10.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.es/2.11.10/humanizer.core.es.2.11.10.nupkg 449 毫秒
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/2.11.10/humanizer.core.uz-cyrl-uz.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/2.11.10/humanizer.core.uz-latn-uz.2.11.10.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.he/2.11.10/humanizer.core.he.2.11.10.nupkg 404 毫秒
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fa/2.11.10/humanizer.core.fa.2.11.10.nupkg 461 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/2.11.10/humanizer.core.vi.2.11.10.nupkg
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/2.11.10/humanizer.core.zh-cn.2.11.10.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr-be/2.11.10/humanizer.core.fr-be.2.11.10.nupkg 430 毫秒
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/2.11.10/humanizer.core.zh-hans.2.11.10.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.fr/2.11.10/humanizer.core.fr.2.11.10.nupkg 455 毫秒
info :   CACHE https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hr/2.11.10/humanizer.core.hr.2.11.10.nupkg 416 毫秒
info :   GET https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/2.11.10/humanizer.core.zh-hant.2.11.10.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hu/2.11.10/humanizer.core.hu.2.11.10.nupkg 412 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.hy/2.11.10/humanizer.core.hy.2.11.10.nupkg 396 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ko-kr/2.11.10/humanizer.core.ko-kr.2.11.10.nupkg 336 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ku/2.11.10/humanizer.core.ku.2.11.10.nupkg 331 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.bg/2.11.10/humanizer.core.bg.2.11.10.nupkg 569 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.mt/2.11.10/humanizer.core.mt.2.11.10.nupkg 300 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ms-my/2.11.10/humanizer.core.ms-my.2.11.10.nupkg 317 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ro/2.11.10/humanizer.core.ro.2.11.10.nupkg 226 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sk/2.11.10/humanizer.core.sk.2.11.10.nupkg 201 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.lv/2.11.10/humanizer.core.lv.2.11.10.nupkg 376 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb-no/2.11.10/humanizer.core.nb-no.2.11.10.nupkg 344 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.th-th/2.11.10/humanizer.core.th-th.2.11.10.nupkg 181 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pl/2.11.10/humanizer.core.pl.2.11.10.nupkg 348 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nl/2.11.10/humanizer.core.nl.2.11.10.nupkg 357 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.pt/2.11.10/humanizer.core.pt.2.11.10.nupkg 327 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.nb/2.11.10/humanizer.core.nb.2.11.10.nupkg 397 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sl/2.11.10/humanizer.core.sl.2.11.10.nupkg 296 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.ru/2.11.10/humanizer.core.ru.2.11.10.nupkg 328 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr/2.11.10/humanizer.core.sr.2.11.10.nupkg 298 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core/2.11.10/humanizer.core.2.11.10.nupkg 395 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sr-latn/2.11.10/humanizer.core.sr-latn.2.11.10.nupkg 303 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.tr/2.11.10/humanizer.core.tr.2.11.10.nupkg 300 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.sv/2.11.10/humanizer.core.sv.2.11.10.nupkg 321 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-latn-uz/2.11.10/humanizer.core.uz-latn-uz.2.11.10.nupkg 294 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uz-cyrl-uz/2.11.10/humanizer.core.uz-cyrl-uz.2.11.10.nupkg 318 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.vi/2.11.10/humanizer.core.vi.2.11.10.nupkg 301 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-cn/2.11.10/humanizer.core.zh-cn.2.11.10.nupkg 311 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hant/2.11.10/humanizer.core.zh-hant.2.11.10.nupkg 295 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.uk/2.11.10/humanizer.core.uk.2.11.10.nupkg 342 毫秒
info :   OK https://api.nuget.org/v3-flatcontainer/humanizer.core.zh-hans/2.11.10/humanizer.core.zh-hans.2.11.10.nupkg 314 毫秒
info : 已通过内容哈希 CQBvNeMW9+MDOGuvl6plPXf/RJzRTqWZVu4/IiZAEHa9ZlEhkx1RElw1xwiCoc20eArPw3ezWcuP7kr+VyYJ+g== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sk 2.11.10 。
info : 已通过内容哈希 4OMNdiF9+gOGlIK4WZg+9XrBREtHla9JXSDC1SwB3XfvXjOADwDfRpmasN2+p/y0itXCFvXosxh8OZmWo5v3iw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sr 2.11.10 。
info : 已通过内容哈希 mCF1+ylOcRhQihCAP2RuSXfjGtd63sTjlu90uIUgIIYlbps6KgNikilsnGdQarT9wFgU33R0In1IoRQb6RsPQg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.th-TH 2.11.10 。
info : 已通过内容哈希 bBfZwgK5+snuE+v6lySvtzvaGqH1AsxuyhYozh7wjAqm93fElEanb9/mA4C31ofnDiKciI9CMqsaO9npr4+fCA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.uz-Latn-UZ 2.11.10 。
info : 已通过内容哈希 2JCv81kb+8utaN2qseedGTXFGx06z3n+z1LayVN/HAGVzPWj5DLVSFRzKzkGXKMIO9aI2w7LQ8KBLQBgIq3Zpw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.vi 2.11.10 。
info : 已通过内容哈希 i08G1aOp37fjw+4ddG4GY2azBp6IhjWdyJOTt8432ln1j45VFtWoGMc/wgBaslh9JHZOQXaArMDvTWspgRzKNw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.zh-Hans 2.11.10 。
info : 已通过内容哈希 F7K1B9l7lht5Rp28M2RvFomPUL8sFyS2NKoNcYCQDuDe3xYybHHT8qAlj78ncPyF9YXcCkgdKmtrJYWW+0G81g== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.uz-Cyrl-UZ 2.11.10 。
info : 已通过内容哈希 2khQ/8Kw8XEKrljKtxYFDlWd+IyuR+MUTs9tGPXS3Lx0Rh+LMStLubbv7kYNeZqoJxtFFC9wdBMMJZgCoAQm0w== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.tr 2.11.10 。
info : 已通过内容哈希 FoJxFIEMN0D5lm4uM2WL3/YHbK1mmAWYSMEO5F4kO2OZvYgSIC41ugG1cpQtXwjtOf7aUtdZSYlN93Xvf62Vmg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.zh-CN 2.11.10 。
info : 已通过内容哈希 4TBsHSXPocdsEB5dewIHeKykTzIz5Ui7ouXw4JsUGI+ax4jjviVJVD7+gsPCNyA+b3de2EjYI+jcEq8I/1ZFSQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core 2.11.10 。
info : 已通过内容哈希 8Mb96AadWgCEGfdZExSPbKNYvu4V3TdL5agTEOw7wWriOvPwm+UNjeyjAmmhtOATIz3x8m/emPdS6DYwxVTJ9A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sr-Latn 2.11.10 。
info : 已通过内容哈希 ak65eFdYRzUg8JbgSrQGdlm87YzpXIqCA6OpPkkEgxu2inWlv4emilAWUpGjzJY0vWo3wwL+35tBcyFo4dHd0A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ru 2.11.10 。
info : 已通过内容哈希 WkAswtnKoR6277zOgTB+NaXfss3Y4Pxat5r+L5Z7VXm2IT/7t9slWEiID1KnnKzLE/RwG8kgEH2GoEqUlwo+tQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sl 2.11.10 。
info : 已通过内容哈希 KKDfUhBKWeQa9GAb3J/argRd6qQP4uMKW9sihEoscF7CdQyHMIgCmeg+la/u96SGT/wZIRN2L8Zekd/1NTMmeA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.sv 2.11.10 。
info : 已通过内容哈希 z/ueYQZCf9SeZIObV2XrHGZIplMPdBmOJHzT13+rcGCOE209X7IoeKgXnWCJVMSHBxW8C5qYrWV/E7+YELnbyA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.zh-Hant 2.11.10 。
info : 已通过内容哈希 PoK5QmXp5B93jv7AboIU/nCYI/IRQJ+0Dw17t+C8lJzbrgtkfISrKzRIQ/ZYgk28SvLbAqRn40+woSNYBc3VPw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.uk 2.11.10 。
info : 已通过内容哈希 V2o0VwCXGHpGo8ocV2FLVRX478J8c+Cs9GDdPV2lMCyaXJcxXsb9YQ3OJAhQ5OYWmKflNuoB861X9ji5u/uYkg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fr-BE 2.11.10 。
info : 已通过内容哈希 B1zxma7ey6Vx+gnD7z5h2wtIclKfIXM4PIndzzdoK301f2Vv9oFgAm2ZN/OG8kNbB8R52qFYiAFVVpyX8LObWg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.cs 2.11.10 。
info : 已通过内容哈希 56FV4ZK9sh8wEGIAotEo2pWoMTUT+cBEfde0bQOTiu+P78ZPB1DuA2ljoOgRmRChPaVwRq/yAiNb8klmv7oDbw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fr 2.11.10 。
info : 已通过内容哈希 VwqhxHkQ9pjxxbrr2/V+eaFtlFm7sWspQn+96zaKeLqk3af/u0JEh0SoqjR9t8r6e/THhc53cE9ckiFOnnNUSA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fi-FI 2.11.10 。
info : 已通过内容哈希 +lqi/QkexkopvE9ZGzuWfmMnlb+qIXOM9Pm6PkKwtqU9CgwBTZLNlRv/lX/uhn5qVy+BVQOdshTpGSqlGydHPg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.af 2.11.10 。
info : 已通过内容哈希 FEK6tC9vRjtnqIKojbWVnZq2IH2t8TDdGpI2zKZ3KoQ7yodnFCvIiwz6u0KhcwqGuw41Jfm2LuuwLrOb1INfRA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.el 2.11.10 。
info : 已通过内容哈希 Lf5b7saE8hD7HSjkyvFHxJ2qtNrDN5J4WpOQz7h3YxuVE6osgP62g9dHlmumMyoRVBLs0jARmjrl4OR6HHJNDA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ro 2.11.10 。
info : 已通过内容哈希 SMxYz3g1pxeA58Ejo9SLfGfcvpdbVdBRdYE9z2p76ddhYAF6lSLmcMu/Io8wpmHg41aEQ78qU8IXEyPSLDnIww== 从 https://api.nuget.org/v3/index.json 安装 Humanizer 2.11.10 。
info : 已通过内容哈希 jAwKP2T/hgNPe3FGRbxWeioa5LO7vjoD5VyDXxbky9LZVlIG6+1wbV+0y7LSMxGRlN/+362cpg1kVy+W7n7+GQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.bg 2.11.10 。
info : 已通过内容哈希 lVfFyC1IbSjyB5ggVaidgGOlFNpeD67QQTn5fhkPbaUnFNIdzenaKuOvfyqBPE93N52+MCnPqGx8fkxqjyPTtQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.es 2.11.10 。
info : 已通过内容哈希 XRH9ZLUriicH6OdovgVfr2Iulx/jsJ29Mto2nY71bewrglj3Vx7i9aPRReEYh5Jogc4R+W6J777/quJKdKhbbQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.de 2.11.10 。
info : 已通过内容哈希 GGArBYonL5TnC0dVlP9SD/kZVwiOzw9vJ0uNh4mkwzVCQ5gqx4zsz98VDpC8Ft+rEv39yF7lv+ExMottwtDajg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.az 2.11.10 。
info : 已通过内容哈希 osvf8hBgG6gvORNxUEfeVA6sZGuBmhHUJTTK63rk4F0QvRE6OyjVlyJ22pcNBx2ccMCxkx3ltWCL8Xezqcl27A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ar 2.11.10 。
info : 已通过内容哈希 vX+1IvETFkxpJz9qwd0Ly3JIKMYuEG37K6iN0qEJMahxBCbyHMIFs71n6VV99PEWBpwuZG3RYLLGWi6y/zpNqA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.da 2.11.10 。
info : 已通过内容哈希 65T62CCCG6XkcBdoD7YfJv4ykIvWBQGTmBXdQAthFVoYEh3pbqDtGfgLu9nEG+lkuC9ky9kFOzMoNu9mj2sHdw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.fa 2.11.10 。
info : 已通过内容哈希 JyjB/VIHcvNpRW0SXmaPPffKCIQc3EZ6yPnEsoo1f7CqAoGQt/gnRc/nw0YezzFAFLwZp7erk0xwKIXgcAwh+w== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.bn-BD 2.11.10 。
info : 已通过内容哈希 sqZTfqnXlE2tPWDup7ZQbi8tb4xQRX2bMH5BUI6OTtJAa9ri4tCaT3AZlWICBB6J5mwnvq2CE8mdPzHnRQG4IQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.nb-NO 2.11.10 。
info : 已通过内容哈希 dSGDWfv3mheyCbS+uoth3ZljeNL+Mv/zmXVnW4dzuAHQ5ntDEESFLok6x0WNSb4cn325CuMPNNU5x5nHMx/MrA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.lv 2.11.10 。
info : 已通过内容哈希 MX5/fi8tmp83RjLSA9Pkqa8RpUu6togSRgU34OggvvJkvqm3dx1JMIamqKvJKEYDscEjjbatnxoMv8q3qaFsFg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ko-KR 2.11.10 。
info : 已通过内容哈希 8IjQ0R5s+HbBGMVkaBJPSw9KoWsNfEPhUIrUsX7EVKh/fZ7ZrnxBh2tSZV3YO8QRgJAdTgqvvqlF4Fnr9BTpKg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ms-MY 2.11.10 。
info : 已通过内容哈希 0M5kmTp2hVlS2yzA6JTeMP0bU2XXjlWnGVkjGDrHsFCtrH6BgdX5Y9fT8D5bpndVhrNZnU07M13sxbpUTP0UNQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.hu 2.11.10 。
info : 已通过内容哈希 LynU8OkMVyxvCfwa4mv0vrP0Uv4BwQBPEJiqSdt/XTFcg1A+h/Ybj93TT3UjJk2MkZJhTxERxUxSaoXeQPkE/A== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.it 2.11.10 。
info : 已通过内容哈希 u2mrAt/k1PJxK3pRgXsaKymP77YA7rvh+SRJ2eV4LsaDv77TAyigWk0YDfbpikkU6kEythgU1+j7WIRtXwCy5Q== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.nl 2.11.10 。
info : 已通过内容哈希 /z5adjfE4Kq2Uz89vlh7KUp4ClRnU5MMbR0rySYamfla8SalNu6/iEg8f37loxDfKLzV/mg/LDtNcr34J0AZ6Q== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.hr 2.11.10 。
info : 已通过内容哈希 79DuXtHt+TwyZHMdf4h6nFCaFAs1QeR0fuAku8xnLvDgkJUN+ImeVXqmE3DZnn4K3BY7uUUhIKMgifBR7XKi5Q== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ku 2.11.10 。
info : 已通过内容哈希 OBYwC++SC6zDJ7m3JfcRh9evUQA7n9Fi7H+h5ETSPvEio8K6JUB59zpf+dJ0bLzFKR7CeLhcbSCxLexX9ZZwUg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.nb 2.11.10 。
info : 已通过内容哈希 /RFblqLeVgqx+VFHVePq84kotP/QBtyuggJqhq+KvAgniGrbRRj2pzI3lStltnvZpPJpu3TKGpTQLllxmebJrQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.hy 2.11.10 。
info : 已通过内容哈希 0aIMXEkrw3FByhoInV0mpFnmPT3gJf1FOpsy6HAxL74j2gIP+xOa2hjb/xKa3HhK/1b5V9DoxKUESrTBeA5dbg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.pl 2.11.10 。
info : 已通过内容哈希 Nwkd0P74P4x3RNnV8qqJetf5JJhURunNw0Pi9cEJpiOwni7OX2mZcyTLp7VgB76SViIt7Cb+FUO5X6QSaRIrZQ== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.he 2.11.10 。
info : 已通过内容哈希 SYg7e3wkavkohdS+ZtqznH7i7nhmbQ8G4Yyzny6r8bUt0ESspLe5wITApbfrNV/IIpsiNOLP6WlUa1f5eHxkIA== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.mt 2.11.10 。
info : 已通过内容哈希 72ab7Jz1DX3GnDik4AFKqWM2AYVL3QRfaYHM77bxNLpxXC65FKbmTQZVQveOtCUpem/jzEafy0cvzx9fA72RDw== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.id 2.11.10 。
info : 已通过内容哈希 QJcanMmSLCGkqPna33sPcxkbh9jSdeiXiGACK3KKuZwt6NTpWIzkHEu2BvcNzP3FaZm30AAqdroyJo9TB09qTg== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.ja 2.11.10 。
info : 已通过内容哈希 lgHMX94bzHJrchpBvpCXMYV2YOn2QYEfdoKP1V2yBaKRzEOyuoYRxrfAFyw6AArzIeMhDNFPg2xrw0NCh7I41g== 从 https://api.nuget.org/v3/index.json 安装 Humanizer.Core.pt 2.11.10 。
info : 包“Humanizer”与项目“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”中指定的所有框架均兼容。
info : 包“Humanizer”(版本为“2.11.10”)的 PackageReference 已在文件“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”中更新
。
info : 将资产文件写入磁盘。路径: C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\obj\project.assets.json
log  : 已还原 C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj (用时 6.06 min)。
PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> 

通过追加 --prerelease 参数来安装最新的预发布包。

dotnet add package Humanizer --prerelease

PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> dotnet add package Humanizer --prerelease
  正在确定要还原的项目…
  Writing C:\Users\a-xiaobodou\AppData\Local\Temp\tmpD7FF.tmp
info : 正在将包“Humanizer”的 PackageReference 添加到项目“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”。
info :   GET https://api.nuget.org/v3/registration5-gz-semver2/humanizer/index.json
info :   OK https://api.nuget.org/v3/registration5-gz-semver2/humanizer/index.json 217 毫秒
info : 正在还原 C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj 的包...
info : 包“Humanizer”与项目“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”中指定的所有框架均兼容。
info : 包“Humanizer”(版本为“2.14.1”)的 PackageReference 已在文件“C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj”中更新。
info : 将资产文件写入磁盘。路径: C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\obj\project.assets.json
log  : 已还原 C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies\DotNetDependencies.csproj (用时 309 ms)。
PS C:\Users\a-xiaobodou\OneDrive - Microsoft\Projects\DotNetDependencies> 

 

  • 12
    点赞
  • 27
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值