Masuit.Tools.Core.csproj 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.1</TargetFramework>
  4. <Version>2.2.4.4</Version>
  5. <Authors>懒得勤快</Authors>
  6. <Company>masuit.com</Company>
  7. <Description>包含一些常用的操作类,大都是静态类,加密解密,反射操作,硬件信息,字符串扩展方法,日期时间扩展操作,大文件拷贝,图像裁剪,html处理,验证码、NoSql等常用封装。
  8. 官网教程:https://masuit.com/55
  9. github:https://github.com/ldqk/Masuit.Tools</Description>
  10. <Copyright>Copyright © 懒得勤快</Copyright>
  11. <PackageProjectUrl>https://github.com/ldqk/Masuit.Tools</PackageProjectUrl>
  12. <PackageTags>Masuit.Tools</PackageTags>
  13. <PackageReleaseNotes>如有问题请联系作者QQ:3444764617,或者到项目的github反馈问题,详细的API文档在github上:https://github.com/ldqk/Masuit.Tools</PackageReleaseNotes>
  14. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  15. <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
  16. <PackageLicenseUrl>https://github.com/ldqk/Masuit.Tools/blob/master/LICENSE</PackageLicenseUrl>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  19. <DocumentationFile>bin\Release\netstandard2.0\Masuit.Tools.Core.xml</DocumentationFile>
  20. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  21. <CodeAnalysisRuleSet />
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  24. <CodeAnalysisRuleSet />
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <Compile Remove="NoSQL\RedisConnectionManager.cs" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <PackageReference Include="HtmlSanitizer" Version="4.0.204" />
  31. <PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.5" />
  32. <PackageReference Include="SharpCompress" Version="0.22.0" />
  33. <PackageReference Include="System.Diagnostics.PerformanceCounter" Version="4.5.0" />
  34. <PackageReference Include="System.Drawing.Common" Version="4.5.1" />
  35. <PackageReference Include="System.Management" Version="4.5.0" />
  36. </ItemGroup>
  37. </Project>