Topten.JsonKit.csproj 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="../buildtools/Topten.props" />
  3. <PropertyGroup>
  4. <TargetFrameworks>net46;netcoreapp2.1;net5.0</TargetFrameworks>
  5. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  6. <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
  7. <XXDefineConstants>JSONKIT_NO_EMIT</XXDefineConstants>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)'=='Release'">
  10. <TtsCodeSign>True</TtsCodeSign>
  11. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  12. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  13. <Copyright>Copyright © 2014-2021 Topten Software. All Rights Reserved</Copyright>
  14. <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
  15. <PackageIcon>nuget-icon.png</PackageIcon>
  16. <PackageProjectUrl>https://github.com/toptensoftware/jsonkit</PackageProjectUrl>
  17. <PackageTags>JSON, Serialization</PackageTags>
  18. <Description>Lightweight JSON Serialization Library</Description>
  19. <RepositoryUrl>https://github.com/toptensoftware/jsonkit</RepositoryUrl>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
  23. <PrivateAssets>all</PrivateAssets>
  24. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  25. </PackageReference>
  26. </ItemGroup>
  27. </Project>