ln.types/ln.types.csproj

101 lines
4.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<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>{8D9AB9A5-E513-4BA7-A450-534F6456BF28}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ln.types</RootNamespace>
<AssemblyName>ln.types</AssemblyName>
<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" />
<Reference Include="System.Xml.Serialization" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml" />
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Castle.Core">
<HintPath>..\packages\Castle.Core.4.3.1\lib\net45\Castle.Core.dll</HintPath>
</Reference>
<Reference Include="System.Configuration" />
<Reference Include="LiteDB">
<HintPath>..\packages\LiteDB.4.1.4\lib\net40\LiteDB.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="CIDR.cs" />
<Compile Include="sync\Syncable.cs" />
<Compile Include="serialize\ObjectWriter.cs" />
<Compile Include="serialize\ObjectReader.cs" />
<Compile Include="odb\ODB.cs" />
<Compile Include="odb\IPersistent.cs" />
<Compile Include="odb\Persistent.cs" />
<Compile Include="serialize\DiskObject.cs" />
<Compile Include="threads\Pool.cs" />
<Compile Include="serialize\ListReplacement.cs" />
<Compile Include="serialize\DictionaryReplacement.cs" />
<Compile Include="threads\PoolJob.cs" />
<Compile Include="odb\PersistentList.cs" />
<Compile Include="odb\PreparedObject.cs" />
<Compile Include="odb\ODBObjectWriter.cs" />
<Compile Include="odb\ODBObjectReader.cs" />
<Compile Include="odb\ODBFileStorage.cs" />
<Compile Include="odb\Storage.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="GeoLocation.cs" />
<Compile Include="URI.cs" />
<Compile Include="odb\ODBCollection.cs" />
<Compile Include="odb\ODBDocument.cs" />
<Compile Include="odb\values\ODBGuid.cs" />
<Compile Include="odb\values\ODBNull.cs" />
<Compile Include="odb\values\ODBStringValue.cs" />
<Compile Include="odb\values\ODBValue.cs" />
<Compile Include="odb\values\ODBInteger.cs" />
<Compile Include="odb\values\ODBLong.cs" />
<Compile Include="odb\values\ODBDouble.cs" />
<Compile Include="odb\ODBMapper.cs" />
<Compile Include="odb\ClassMapping.cs" />
<Compile Include="odb\values\ODBList.cs" />
<Compile Include="odb\ListMapping.cs" />
<Compile Include="odb\ODBCollection&lt;&gt;.cs" />
<Compile Include="odb\DictionaryMapping.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="sync\" />
<Folder Include="serialize\" />
<Folder Include="odb\" />
<Folder Include="threads\" />
<Folder Include="odb\values\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ln.logging\ln.logging.csproj">
<Project>{D471A566-9FB6-41B2-A777-3C32874ECD0E}</Project>
<Name>ln.logging</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>