ln.json/ln.json.csproj

78 lines
3.3 KiB
XML
Raw Normal View History

2019-08-07 23:02:00 +02:00
<?xml version="1.0" encoding="utf-8"?>
2017-10-26 16:41:14 +02:00
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D9342117-3249-4D8B-87C9-51A50676B158}</ProjectGuid>
<OutputType>Library</OutputType>
2019-08-07 23:02:00 +02:00
<RootNamespace>ln.json</RootNamespace>
<AssemblyName>ln.json</AssemblyName>
2017-10-26 16:41:14 +02:00
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="JSONSpecial.cs" />
<Compile Include="JSONObject.cs" />
<Compile Include="JSONArray.cs" />
<Compile Include="JSONString.cs" />
<Compile Include="JSONNumber.cs" />
2019-08-07 23:02:00 +02:00
<Compile Include="JSONValue.cs" />
2017-11-03 13:13:09 +01:00
<Compile Include="JSONParser.cs" />
2019-08-08 00:34:16 +02:00
<Compile Include="mapping\JSONMapper.cs" />
<Compile Include="mapping\JSONMapping.cs" />
<Compile Include="mapping\JSONArrayMapping.cs" />
<Compile Include="mapping\JSONObjectMapping.cs" />
<Compile Include="mapping\JSONEnumerableMapping.cs" />
2019-08-19 14:14:24 +02:00
<Compile Include="mapping\JSONRPCCallMapping.cs" />
<Compile Include="mapping\JSONDateTimeMapping.cs" />
<Compile Include="mapping\JSONGuidMapping.cs" />
<Compile Include="mapping\JSONIPv4Mapping.cs" />
<Compile Include="mapping\JSONNetwork4Mapping.cs" />
<Compile Include="mapping\JSONTimeSpanMapping.cs" />
<Compile Include="mapping\JSONDateTimeOffsetMapping.cs" />
<Compile Include="mapping\JSONRPCResultMapping.cs" />
2019-08-29 14:16:55 +02:00
<Compile Include="attributes\JSONMappingAttribute.cs" />
<Compile Include="mapping\JSONEnumMapping.cs" />
2019-09-01 19:33:28 +02:00
<Compile Include="mapping\JSONDictionaryMapping.cs" />
2017-10-26 16:41:14 +02:00
</ItemGroup>
<ItemGroup>
2019-08-19 14:14:24 +02:00
<Folder Include="mapping\" />
2019-08-29 14:16:55 +02:00
<Folder Include="attributes\" />
2019-08-19 14:14:24 +02:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ln.types\ln.types.csproj">
2019-08-07 23:02:00 +02:00
<Project>{8D9AB9A5-E513-4BA7-A450-534F6456BF28}</Project>
<Name>ln.types</Name>
2017-10-26 16:41:14 +02:00
</ProjectReference>
2017-11-23 13:05:58 +01:00
</ItemGroup>
2017-10-26 16:41:14 +02:00
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
2019-08-07 23:02:00 +02:00
<DotNetNamingPolicy ResourceNamePolicy="FileFormatDefault" DirectoryNamespaceAssociation="PrefixedHierarchical" />
2017-10-26 16:41:14 +02:00
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>