Adding C# solution.
[IEnumerableExtras.git] / C# / IEnumerableExtras.csproj
blob71b60cd7903f65ebf9cd043694426ab904c05b9e
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3   <PropertyGroup>
4     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6     <ProductVersion>9.0.30729</ProductVersion>
7     <SchemaVersion>2.0</SchemaVersion>
8     <ProjectGuid>{F5085693-DD41-46BF-A918-916926CE650B}</ProjectGuid>
9     <OutputType>Library</OutputType>
10     <AppDesignerFolder>Properties</AppDesignerFolder>
11     <RootNamespace>IEnumerableExtras</RootNamespace>
12     <AssemblyName>IEnumerableExtras</AssemblyName>
13     <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14     <FileAlignment>512</FileAlignment>
15     <SccProjectName>SAK</SccProjectName>
16     <SccLocalPath>SAK</SccLocalPath>
17     <SccAuxPath>SAK</SccAuxPath>
18     <SccProvider>SAK</SccProvider>
19   </PropertyGroup>
20   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21     <DebugSymbols>true</DebugSymbols>
22     <DebugType>full</DebugType>
23     <Optimize>false</Optimize>
24     <OutputPath>..\..\build\bin\Debug\</OutputPath>
25     <DefineConstants>DEBUG;TRACE</DefineConstants>
26     <ErrorReport>prompt</ErrorReport>
27     <WarningLevel>4</WarningLevel>
28   </PropertyGroup>
29   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30     <DebugType>pdbonly</DebugType>
31     <Optimize>true</Optimize>
32     <OutputPath>..\..\build\bin\Release\</OutputPath>
33     <DefineConstants>TRACE</DefineConstants>
34     <ErrorReport>prompt</ErrorReport>
35     <WarningLevel>4</WarningLevel>
36   </PropertyGroup>
37   <ItemGroup>
38     <Reference Include="System" />
39     <Reference Include="System.Core">
40       <RequiredTargetFramework>3.5</RequiredTargetFramework>
41     </Reference>
42     <Reference Include="System.Xml.Linq">
43       <RequiredTargetFramework>3.5</RequiredTargetFramework>
44     </Reference>
45     <Reference Include="System.Data.DataSetExtensions">
46       <RequiredTargetFramework>3.5</RequiredTargetFramework>
47     </Reference>
48     <Reference Include="System.Data" />
49     <Reference Include="System.Xml" />
50   </ItemGroup>
51   <ItemGroup>
52     <Compile Include="ArrayTools.cs" />
53     <Compile Include="DictionaryToArray.cs" />
54     <Compile Include="EnumerableFilter.cs" />
55     <Compile Include="EnumerableForEach.cs" />
56     <Compile Include="EnumerableIn.cs" />
57     <Compile Include="EnumerableMap.cs" />
58     <Compile Include="ListIndexOf.cs" />
59     <Compile Include="EnumerableCompare.cs" />
60     <Compile Include="EnumerableReduce.cs" />
61     <Compile Include="EnumerableSome.cs" />
62     <Compile Include="EnumerableJoin.cs" />
63     <Compile Include="Pair.cs" />
64     <Compile Include="Properties\AssemblyInfo.cs" />
65   </ItemGroup>
66   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
67   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
68        Other similar extension points exist, see Microsoft.Common.targets.
69   <Target Name="BeforeBuild">
70   </Target>
71   <Target Name="AfterBuild">
72   </Target>
73   -->
74 </Project>