A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

76 lines
4.0 KiB

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{415E048E-4611-4815-9CF2-D774E29079AC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NGenerics</RootNamespace>
<AssemblyName>NGenerics</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<!-- A reference to the entire .NET Framework is automatically included -->
</ItemGroup>
<ItemGroup>
<Compile Include="DataStructures\Comparers\ReverseComparer.cs" />
<Compile Include="DataStructures\General\Heap.cs" />
<Compile Include="DataStructures\General\HeapType.cs" />
<Compile Include="DataStructures\General\IHeap.cs" />
<Compile Include="DataStructures\Trees\BinarySearchTreeBase.cs" />
<Compile Include="DataStructures\Trees\BinaryTree.cs" />
<Compile Include="DataStructures\Comparers\ComparisonComparer.cs" />
<Compile Include="Constants.cs" />
<Compile Include="Util\Guard.cs" />
<Compile Include="Patterns\Visitor\InOrderVisitor.cs" />
<Compile Include="DataStructures\Queues\IQueue.cs" />
<Compile Include="DataStructures\Trees\ISearchTree.cs" />
<Compile Include="DataStructures\Trees\ITree.cs" />
<Compile Include="Patterns\Visitor\IVisitor.cs" />
<Compile Include="Patterns\Visitor\KeyTrackingVisitor.cs" />
<Compile Include="DataStructures\Comparers\KeyValuePairComparer.cs" />
<Compile Include="DataStructures\Trees\NodeColor.cs" />
<Compile Include="Patterns\Visitor\OrderedVisitor.cs" />
<Compile Include="DataStructures\Queues\PriorityQueue.cs" />
<Compile Include="DataStructures\Queues\PriorityQueueType.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="DataStructures\Trees\RedBlackTree.cs" />
<Compile Include="DataStructures\Trees\RedBlackTreeDictionary.cs" />
<Compile Include="DataStructures\Trees\RedBlackTreeList.cs" />
<Compile Include="DataStructures\Trees\RedBlackTreeNode.cs" />
<Compile Include="Patterns\Visitor\TrackingVisitor.cs" />
<Compile Include="Patterns\Visitor\ValueTrackingVisitor.cs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>