17 lines
457 B
XML
17 lines
457 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<OutputPath>..\..\..\Binaries\ThirdParty\fastJSON\</OutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Reflection.Emit.Lightweight">
|
|
<Version>4.3.0</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|