ln.types/ln.types.csproj

68 lines
2.7 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-15 07:43:18 +01:00
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
2019-03-13 08:22:08 +01:00
</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" />
2019-03-13 14:18:11 +01:00
<Compile Include="threads\Pool.cs" />
2019-03-14 13:31:21 +01:00
<Compile Include="serialize\ListReplacement.cs" />
<Compile Include="serialize\DictionaryReplacement.cs" />
2019-03-13 08:22:08 +01:00
</ItemGroup>
<ItemGroup>
<Folder Include="sync\" />
<Folder Include="serialize\" />
<Folder Include="odb\" />
2019-03-13 14:18:11 +01:00
<Folder Include="threads\" />
2019-03-13 08:22:08 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ln.logging\ln.logging.csproj">
<Project>{D471A566-9FB6-41B2-A777-3C32874ECD0E}</Project>
<Name>ln.logging</Name>
</ProjectReference>
</ItemGroup>
2019-03-15 07:43:18 +01:00
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
2019-03-13 08:22:08 +01:00
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>