Masuit.Tools.Abstractions.csproj 4.3 KB

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