ln.types/ln.types.csproj

135 lines
5.8 KiB
XML
Raw Normal View History

2019-03-13 08:22:08 +01:00
<?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" />
2019-03-20 14:28:56 +01:00
<Reference Include="System.Configuration" />
2019-03-29 08:55:17 +01:00
<Reference Include="nunit.framework">
<Package>nunit</Package>
</Reference>
2019-03-13 08:22:08 +01:00
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
2019-03-13 14:18:11 +01:00
<Compile Include="threads\Pool.cs" />
2019-03-15 15:35:55 +01:00
<Compile Include="threads\PoolJob.cs" />
2019-03-21 14:07:08 +01:00
<Compile Include="Extensions.cs" />
2019-03-26 12:54:02 +01:00
<Compile Include="GeoLocation.cs" />
<Compile Include="URI.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\values\ODBList.cs" />
2019-03-27 07:49:53 +01:00
<Compile Include="odb\values\ODBBool.cs" />
2019-03-29 08:55:17 +01:00
<Compile Include="btree\BTree.cs" />
<Compile Include="btree\MappingBTree.cs" />
<Compile Include="threads\Timing.cs" />
2019-03-29 13:57:13 +01:00
<Compile Include="test\testBTree.cs" />
2019-04-01 15:17:46 +02:00
<Compile Include="net\IPv4.cs" />
2019-04-02 01:25:49 +02:00
<Compile Include="net\Network4.cs" />
<Compile Include="odb\values\ODBTypedValue.cs" />
2019-04-05 00:59:07 +02:00
<Compile Include="DvDt.cs" />
2019-04-17 18:01:04 +02:00
<Compile Include="btree\BTreeValueList.cs" />
2019-04-23 09:31:50 +02:00
<Compile Include="net\MAC.cs" />
2019-05-07 12:54:52 +02:00
<Compile Include="net\Endpoint4.cs" />
2019-08-03 12:50:41 +02:00
<Compile Include="net\tools\Ping.cs" />
<Compile Include="net\IPv4Header.cs" />
<Compile Include="net\ICMPPacket.cs" />
<Compile Include="ArgumentContainer.cs" />
<Compile Include="rpc\RPCContainer.cs" />
<Compile Include="rpc\RPCCall.cs" />
<Compile Include="rpc\RPCResult.cs" />
<Compile Include="odb\ng\Mapper.cs" />
2019-07-03 23:27:26 +02:00
<Compile Include="odb\ng\IODBMapping.cs" />
<Compile Include="odb\ng\ObjectCollection.cs" />
<Compile Include="odb\ng\mappings\ClassMapping.cs" />
<Compile Include="odb\ng\mappings\SimpleMapping.cs" />
<Compile Include="odb\ng\mappings\DictionaryMapping.cs" />
<Compile Include="odb\ng\mappings\ListMapping.cs" />
<Compile Include="odb\ng\Reference.cs" />
<Compile Include="stream\CharStream.cs" />
2019-08-26 13:11:56 +02:00
<Compile Include="odb\ng\Query.cs" />
<Compile Include="odb\ng\IStorage.cs" />
<Compile Include="odb\ng\Document.cs" />
<Compile Include="odb\ng\IStorageContainer.cs" />
<Compile Include="odb\ng\storage\OrganizedFile.cs" />
<Compile Include="odb\ng\storage\OrganizedFileType.cs" />
<Compile Include="odb\ng\storage\FSStorageContainer.cs" />
<Compile Include="odb\ng\storage\FSStorage.cs" />
<Compile Include="odb\ng\storage\StorageAreaContainer.cs" />
<Compile Include="odb\ng\storage\StorageArea.cs" />
<Compile Include="odb\ng\Session.cs" />
<Compile Include="odb\ng\Mapper.API.cs" />
2019-08-28 14:05:04 +02:00
<Compile Include="odb\ng\index\Index.cs" />
<Compile Include="odb\ng\index\SimpleIndex.cs" />
<Compile Include="odb\ng\index\Path.cs" />
<Compile Include="odb\ng\index\IndexPath.cs" />
2019-08-31 00:38:51 +02:00
<Compile Include="PathHelper.cs" />
2019-09-11 09:26:33 +02:00
<Compile Include="threads\ThreadHelpers.cs" />
2019-09-11 09:28:16 +02:00
<Compile Include="threads\DynamicPool.cs" />
2019-09-11 09:28:03 +02:00
<Compile Include="threads\PoolThread.cs" />
2019-09-12 11:46:57 +02:00
<Compile Include="odb\ng\DocumentChanges.cs" />
2019-09-15 14:23:44 +02:00
<Compile Include="net\IPv6.cs" />
2019-09-15 14:23:28 +02:00
<Compile Include="arithmetics\Words.cs" />
2019-09-17 12:58:59 +02:00
<Compile Include="odb\ng\Events.cs" />
<Compile Include="odb\ng\storage\bases\StorageBase.cs" />
<Compile Include="odb\ng\storage\bases\CachingStorageBase.cs" />
2019-09-19 08:41:25 +02:00
<Compile Include="cache\LinkedListItem.cs" />
<Compile Include="collections\LinkedList.cs" />
2019-03-13 08:22:08 +01:00
</ItemGroup>
<ItemGroup>
<Folder Include="odb\" />
2019-03-13 14:18:11 +01:00
<Folder Include="threads\" />
2019-03-26 12:54:02 +01:00
<Folder Include="odb\values\" />
2019-03-29 08:55:17 +01:00
<Folder Include="btree\" />
<Folder Include="test\" />
2019-04-01 15:17:46 +02:00
<Folder Include="net\" />
2019-08-03 12:50:41 +02:00
<Folder Include="net\tools\" />
<Folder Include="rpc\" />
2019-07-03 23:27:26 +02:00
<Folder Include="odb\ng\" />
<Folder Include="odb\ng\mappings\" />
<Folder Include="stream\" />
2019-08-28 14:05:04 +02:00
<Folder Include="odb\ng\index\" />
2019-09-15 14:23:28 +02:00
<Folder Include="arithmetics\" />
2019-09-17 12:58:59 +02:00
<Folder Include="odb\ng\storage\bases\" />
2019-03-13 08:22:08 +01:00
</ItemGroup>
<ItemGroup>
2019-08-29 13:13:55 +02:00
<ProjectReference Include="..\ln.logging\ln.logging.csproj">
2019-03-13 08:22:08 +01:00
<Project>{D471A566-9FB6-41B2-A777-3C32874ECD0E}</Project>
<Name>ln.logging</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
2019-08-20 08:36:29 +02:00
</Project>