Masuit.Tools.Core.csproj 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\SDKPulishNuget.targets" />
  3. <PropertyGroup>
  4. <TargetFramework>netstandard2.1</TargetFramework>
  5. <Description>
  6. 包含一些常用的操作类,大都是静态类,加密解密,反射操作,硬件信息,字符串扩展方法,日期时间扩展操作,大文件拷贝,图像裁剪,html处理,验证码、NoSql等常用封装。
  7. 官网教程:https://masuit.com/55
  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</PackageTags>
  13. <PackageReleaseNotes>如有问题请联系作者QQ:3444764617,或者到项目的github反馈问题,详细的API文档在github上:https://github.com/ldqk/Masuit.Tools</PackageReleaseNotes>
  14. <PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
  15. <PackageLicenseUrl>https://github.com/ldqk/Masuit.Tools/blob/master/LICENSE</PackageLicenseUrl>
  16. <Product>Masuit.Tools.Core</Product>
  17. <PackageId>Masuit.Tools.Core</PackageId>
  18. <LangVersion>8.0</LangVersion>
  19. <UserSecretsId>830c282f-f7c1-42be-8651-4cd06ac8e73f</UserSecretsId>
  20. <RepositoryType>Github</RepositoryType>
  21. <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
  22. <Version>2.3.0</Version>
  23. <FileVersion>2.3.0.0</FileVersion>
  24. <Company>masuit.com</Company>
  25. <AssemblyVersion>2.3.0.0</AssemblyVersion>
  26. <Authors>懒得勤快X</Authors>
  27. <RepositoryUrl>https://github.com/ldqk/Masuit.Tools</RepositoryUrl>
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <Compile Remove="DateTimeExt\**" />
  31. <Compile Remove="Hardware\**" />
  32. <Compile Remove="Html\**" />
  33. <Compile Remove="Linq\**" />
  34. <Compile Remove="Logging\**" />
  35. <Compile Remove="Mapping\**" />
  36. <Compile Remove="Maths\**" />
  37. <Compile Remove="Media\**" />
  38. <Compile Remove="RandomSelector\**" />
  39. <Compile Remove="Systems\**" />
  40. <Compile Remove="Win32\**" />
  41. <EmbeddedResource Remove="DateTimeExt\**" />
  42. <EmbeddedResource Remove="Hardware\**" />
  43. <EmbeddedResource Remove="Html\**" />
  44. <EmbeddedResource Remove="Linq\**" />
  45. <EmbeddedResource Remove="Logging\**" />
  46. <EmbeddedResource Remove="Mapping\**" />
  47. <EmbeddedResource Remove="Maths\**" />
  48. <EmbeddedResource Remove="Media\**" />
  49. <EmbeddedResource Remove="RandomSelector\**" />
  50. <EmbeddedResource Remove="Systems\**" />
  51. <EmbeddedResource Remove="Win32\**" />
  52. <None Remove="DateTimeExt\**" />
  53. <None Remove="Hardware\**" />
  54. <None Remove="Html\**" />
  55. <None Remove="Linq\**" />
  56. <None Remove="Logging\**" />
  57. <None Remove="Mapping\**" />
  58. <None Remove="Maths\**" />
  59. <None Remove="Media\**" />
  60. <None Remove="RandomSelector\**" />
  61. <None Remove="Systems\**" />
  62. <None Remove="Win32\**" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Compile Include="..\Masuit.Tools\Reflection\ClassHelper.cs" Link="Reflection\ClassHelper.cs" />
  66. <Compile Include="..\Masuit.Tools\Reflection\ReflectHelper.cs" Link="Reflection\ReflectHelper.cs" />
  67. <Compile Include="..\Masuit.Tools\Reflection\ReflectionUtil.cs" Link="Reflection\ReflectionUtil.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
  71. </ItemGroup>
  72. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  73. <DocumentationFile>.\Masuit.Tools.Core.xml</DocumentationFile>
  74. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  75. <CodeAnalysisRuleSet />
  76. </PropertyGroup>
  77. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  78. <CodeAnalysisRuleSet />
  79. <DocumentationFile>.\Masuit.Tools.Core.xml</DocumentationFile>
  80. </PropertyGroup>
  81. <ItemGroup>
  82. <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
  83. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.7" />
  84. <PackageReference Include="Microsoft.Extensions.Http" Version="3.1.7" />
  85. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  86. <PackageReference Include="SharpCompress" Version="0.26.0" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Update="Masuit.Tools.Core.xml">
  90. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  91. </None>
  92. </ItemGroup>
  93. <ItemGroup>
  94. <ProjectReference Include="..\Masuit.Tools.Abstractions\Masuit.Tools.Abstractions.csproj" />
  95. </ItemGroup>
  96. <ItemGroup>
  97. <Folder Include="Reflection\" />
  98. </ItemGroup>
  99. </Project>