Masuit.Tools.Abstractions.csproj 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\SDKPulishNuget.targets" />
  3. <PropertyGroup>
  4. <TargetFrameworks>netstandard2.0;netstandard2.1;net461;net5</TargetFrameworks>
  5. <LangVersion>9.0</LangVersion>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <CodeAnalysisRuleSet />
  8. <Version>2.4.3.2</Version>
  9. <Authors>懒得勤快</Authors>
  10. <Description>Masuit.Tools基础公共库</Description>
  11. <Copyright>懒得勤快,长空X</Copyright>
  12. <RepositoryUrl>https://github.com/ldqk/Masuit.Tools</RepositoryUrl>
  13. <PackageProjectUrl>https://github.com/ldqk/Masuit.Tools</PackageProjectUrl>
  14. <PackageTags>Masuit.Tools,工具库,Utility,Crypt,Extensions</PackageTags>
  15. <PackageReleaseNotes>Masuit.Tools基础公共库</PackageReleaseNotes>
  16. <Product>Masuit.Tools.Abstractions</Product>
  17. <PackageId>Masuit.Tools.Abstractions</PackageId>
  18. <RepositoryType>Github</RepositoryType>
  19. <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
  20. <PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
  21. <FileVersion>2.4.3.2</FileVersion>
  22. <Company>ldqk.org</Company>
  23. <AssemblyVersion>2.4.3.2</AssemblyVersion>
  24. <PackageLicenseUrl>https://github.com/ldqk/Masuit.Tools/blob/master/LICENSE</PackageLicenseUrl>
  25. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  26. <IncludeSymbols>true</IncludeSymbols>
  27. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  28. </PropertyGroup>
  29. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
  30. <DocumentationFile>.\Masuit.Tools.Abstractions.xml</DocumentationFile>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Compile Remove="Mapping\**" />
  34. <EmbeddedResource Remove="Mapping\**" />
  35. <None Remove="Mapping\**" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Compile Remove="Reflection\ClassHelper.cs" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <PackageReference Include="DnsClient" Version="1.4.0" />
  42. <PackageReference Include="HtmlAgilityPack" Version="1.11.32" />
  43. <PackageReference Include="HtmlSanitizer" Version="5.0.376" />
  44. <PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
  45. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  46. <PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
  47. <PackageReference Include="System.Diagnostics.PerformanceCounter" Version="4.7.0" />
  48. <PackageReference Include="System.Management" Version="4.7.0" />
  49. <PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
  50. <PackageReference Include="SharpCompress" Version="0.28.1" />
  51. </ItemGroup>
  52. <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
  53. <PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.2.0" />
  54. <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.2.0" />
  55. <PackageReference Include="System.Drawing.Common" Version="4.5.0" />
  56. </ItemGroup>
  57. <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1'">
  58. <PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.2.0" />
  59. <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.9" />
  60. <PackageReference Include="System.Drawing.Common" Version="5.0.0" />
  61. </ItemGroup>
  62. <ItemGroup Condition=" '$(TargetFramework)' == 'net5'">
  63. <PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.2.0" />
  64. <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
  65. <PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
  66. <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
  67. <PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
  68. <PackageReference Include="System.Diagnostics.PerformanceCounter" Version="5.0.1" />
  69. <PackageReference Include="System.Management" Version="5.0.0" />
  70. <PackageReference Include="System.Drawing.Common" Version="5.0.2" />
  71. </ItemGroup>
  72. <ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
  73. <Reference Include="System.Web" />
  74. <PackageReference Include="System.Buffers" version="4.5.1" targetFramework="net461" />
  75. <PackageReference Include="System.Runtime.Numerics" version="4.3.0" targetFramework="net461" />
  76. <PackageReference Include="System.ValueTuple" version="4.5.0" targetFramework="net461" />
  77. <PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
  78. </ItemGroup>
  79. </Project>