Skip to content

Commit

Permalink
增加字典类型的扩展函数
Browse files Browse the repository at this point in the history
  • Loading branch information
ldqk committed Aug 31, 2022
1 parent 1b18c76 commit d820797
Show file tree
Hide file tree
Showing 9 changed files with 420 additions and 8 deletions.
412 changes: 412 additions & 0 deletions Masuit.Tools.Abstractions/Extensions/BaseType/IDictionaryExtensions.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Masuit.Tools.Abstractions/Masuit.Tools.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFrameworks>netstandard2.0;netstandard2.1;net461;net5;net6</TargetFrameworks>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>2.5.3</Version>
<Version>2.5.4</Version>
<Authors>懒得勤快</Authors>
<Description>Masuit.Tools基础公共库,包含一些常用的操作类,大都是静态类,加密解密,反射操作,Excel简单导出,权重随机筛选算法,分布式短id,表达式树,linq扩展,文件压缩,多线程下载和FTP客户端,硬件信息,字符串扩展方法,日期时间扩展操作,中国农历,大文件拷贝,图像裁剪,验证码,断点续传,集合扩展等常用封装。</Description>
<Copyright>懒得勤快,长空X</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Masuit.Tools.AspNetCore/Masuit.Tools.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<LangVersion>latest</LangVersion>
<RepositoryType>Github</RepositoryType>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.1.3</Version>
<Version>1.1.4</Version>
<FileVersion>1.0</FileVersion>
<Company>masuit.com</Company>
<AssemblyVersion>1.0</AssemblyVersion>
Expand Down
2 changes: 1 addition & 1 deletion Masuit.Tools.Core/Masuit.Tools.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ github:https://github.com/ldqk/Masuit.Tools
<UserSecretsId>830c282f-f7c1-42be-8651-4cd06ac8e73f</UserSecretsId>
<RepositoryType>Github</RepositoryType>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>2.5.3</Version>
<Version>2.5.4</Version>
<FileVersion>2.4.5.6</FileVersion>
<Company>masuit.com</Company>
<AssemblyVersion>2.4.5.6</AssemblyVersion>
Expand Down
2 changes: 1 addition & 1 deletion Masuit.Tools.Excel/Masuit.Tools.Excel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<DocumentationFile>.\Masuit.Tools.Excel.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="EPPlus" Version="6.0.6" />
<PackageReference Include="EPPlus" Version="6.0.7" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Masuit.Tools.Net45/package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Masuit.Tools.Net45</id>
<version>2.5.3</version>
<version>2.5.4</version>
<title>Masuit.Tools</title>
<authors>懒得勤快</authors>
<owners>masuit.com</owners>
Expand Down
2 changes: 1 addition & 1 deletion Masuit.Tools/package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Masuit.Tools.Net</id>
<version>2.5.3</version>
<version>2.5.4</version>
<title>Masuit.Tools</title>
<authors>懒得勤快</authors>
<owners>masuit.com</owners>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion Test/Masuit.Tools.Core.Test/Masuit.Tools.Core.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.8" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit d820797

Please sign in to comment.