12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <LangVersion>latest</LangVersion>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
- <PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
- <PackageReference Include="System.Text.Json" Version="5.0.2" />
- </ItemGroup>
- </Project>
|