JsonRpcLite.csproj 723 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <LangVersion>latest</LangVersion>
  5. </PropertyGroup>
  6. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  7. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
  14. <PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
  15. <PackageReference Include="System.Text.Json" Version="5.0.2" />
  16. </ItemGroup>
  17. </Project>