forked from mgholam/fastJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfastJSON.csproj
More file actions
40 lines (35 loc) · 1.7 KB
/
fastJSON.csproj
File metadata and controls
40 lines (35 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net4.0</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>2.1.0.0</Version>
<FileVersion>2.1.34.0</FileVersion>
<Description>smallest fastest polymorphic json serializer</Description>
<Copyright>2010-2018</Copyright>
<Authors>M. Gholam</Authors>
<PackageProjectUrl>https://www.codeproject.com/Articles/159450/fastJSON</PackageProjectUrl>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\fastJSON\fastJSON.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0 net4</DefineConstants>
<OutputPath>..\output\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\fastJSON\dynamic.cs" Link="dynamic.cs" />
<Compile Include="..\fastJSON\Formatter.cs" Link="Formatter.cs" />
<Compile Include="..\fastJSON\Getters.cs" Link="Getters.cs" />
<Compile Include="..\fastJSON\JSON.cs" Link="JSON.cs" />
<Compile Include="..\fastJSON\JsonParser.cs" Link="JsonParser.cs" />
<Compile Include="..\fastJSON\JsonSerializer.cs" Link="JsonSerializer.cs" />
<Compile Include="..\fastJSON\Reflection.cs" Link="Reflection.cs" />
<Compile Include="..\fastJSON\SafeDictionary.cs" Link="SafeDictionary.cs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Reflection.Emit.Lightweight">
<Version>4.3.0</Version>
</PackageReference>
</ItemGroup>
</Project>