资讯详情

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

使用 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 新文件夹,然后选择选择文件夹。

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

在终端窗口中

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-fatcontainer/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+LNrF9

标签: 温度传感器wkl

锐单商城拥有海量元器件数据手册IC替代型号,打造 电子元器件IC百科大全!

锐单商城 - 一站式电子元器件采购平台