ln.types/ln.types.csproj

122 lines
5.2 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="System.Configuration" />
<Reference Include="nunit.framework">
<Package>nunit</Package>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="threads\Pool.cs" />
<Compile Include="threads\PoolJob.cs" />
<Compile Include="Extensions.cs" />
<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" />
<Compile Include="odb\values\ODBBool.cs" />
<Compile Include="btree\BTree.cs" />
<Compile Include="btree\MappingBTree.cs" />
<Compile Include="threads\Timing.cs" />
<Compile Include="test\testBTree.cs" />
<Compile Include="net\IPv4.cs" />
<Compile Include="net\Network4.cs" />
<Compile Include="odb\values\ODBTypedValue.cs" />
<Compile Include="DvDt.cs" />
<Compile Include="btree\BTreeValueList.cs" />
<Compile Include="net\MAC.cs" />
<Compile Include="net\Endpoint4.cs" />
<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" />
<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" />
<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" />
<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" />
<Compile Include="PathHelper.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="odb\" />
<Folder Include="threads\" />
<Folder Include="odb\values\" />
<Folder Include="btree\" />
<Folder Include="test\" />
<Folder Include="net\" />
<Folder Include="net\tools\" />
<Folder Include="rpc\" />
<Folder Include="odb\ng\" />
<Folder Include="odb\ng\mappings\" />
<Folder Include="stream\" />
<Folder Include="odb\ng\index\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ln.logging\ln.logging.csproj">
<Project>{D471A566-9FB6-41B2-A777-3C32874ECD0E}</Project>
<Name>ln.logging</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>