Masuit.Tools.AspNetCore.csproj 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netcoreapp3.1;net5;net6;net7;net8</TargetFrameworks>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Description>
  6. 全龄段友好的C#万能工具库,码数吐司库(适用于.NET Core Web项目),不管你是菜鸟新手还是骨灰级玩家都能轻松上手,包含一些常用的操作类,大都是静态类,加密解密,反射操作,权重随机筛选算法,分布式短id,表达式树,linq扩展,文件压缩,多线程下载和FTP客户端,硬件信息,字符串扩展方法,日期时间扩展操作,中国农历,大文件拷贝,图像裁剪,验证码,断点续传,集合扩展等常用封装。包含一些AspNetCore常用的工具类、ModelBinder等。
  7. 官网教程:https://tools.masuit.org
  8. github:https://github.com/ldqk/Masuit.Tools
  9. </Description>
  10. <Copyright>Copyright © 懒得勤快</Copyright>
  11. <PackageProjectUrl>https://github.com/ldqk/Masuit.Tools</PackageProjectUrl>
  12. <PackageTags>Masuit.Tools,工具库,Utility,ModelBinder</PackageTags>
  13. <PackageReleaseNotes>如有问题请联系作者QQ:3444764617,或者到项目的github反馈问题,
  14. 详细的API文档在github上:https://github.com/ldqk/Masuit.Tools</PackageReleaseNotes>
  15. <PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
  16. <PackageLicenseUrl>https://github.com/ldqk/Masuit.Tools/blob/master/LICENSE</PackageLicenseUrl>
  17. <Product>Masuit.Tools.AspNetCore</Product>
  18. <PackageId>Masuit.Tools.AspNetCore</PackageId>
  19. <LangVersion>latest</LangVersion>
  20. <Version>1.2.8.9</Version>
  21. <RepositoryType></RepositoryType>
  22. <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
  23. <FileVersion>1.1.9</FileVersion>
  24. <Company>masuit.com</Company>
  25. <AssemblyVersion>1.1.9</AssemblyVersion>
  26. <Authors>懒得勤快</Authors>
  27. <RepositoryUrl>https://github.com/ldqk/Masuit.Tools</RepositoryUrl>
  28. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  29. <IncludeSymbols>true</IncludeSymbols>
  30. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  31. <OutputType>Library</OutputType>
  32. <IsPackable>true</IsPackable>
  33. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  34. <Title>Masuit.Tools</Title>
  35. <PackageReadmeFile>README.md</PackageReadmeFile>
  36. <SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <None Include="..\README.md">
  40. <Pack>True</Pack>
  41. <PackagePath>\</PackagePath>
  42. </None>
  43. </ItemGroup>
  44. <ItemGroup>
  45. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  46. <PackageReference Include="FastExpressionCompiler" Version="4.1.0" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <ProjectReference Include="..\Masuit.Tools.Core\Masuit.Tools.Core.csproj" />
  50. </ItemGroup>
  51. <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1'">
  52. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="[3.1.32]" />
  53. <PackageReference Include="System.Net.Http.Json" Version="3.2.1" />
  54. </ItemGroup>
  55. <ItemGroup Condition=" '$(TargetFramework)' == 'net5'">
  56. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="[5.0.17]" />
  57. <PackageReference Include="System.Net.Http.Json" Version="5.0" />
  58. </ItemGroup>
  59. <ItemGroup Condition=" '$(TargetFramework)' == 'net6'">
  60. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="[6.0.26]" />
  61. <PackageReference Include="System.Net.Http.Json" Version="6.0.1" />
  62. </ItemGroup>
  63. <ItemGroup Condition=" '$(TargetFramework)' == 'net7'">
  64. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.15" />
  65. <PackageReference Include="System.Net.Http.Json" Version="7.0.1" />
  66. </ItemGroup>
  67. <ItemGroup Condition=" '$(TargetFramework)' == 'net8'">
  68. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.1" />
  69. <PackageReference Include="System.Net.Http.Json" Version="8.0" />
  70. </ItemGroup>
  71. </Project>