/src/LinFu.Finders/LinFu.Finders.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 76 lines · 69 code · 0 blank · 7 comment · 4 complexity · 6b8029b2c525c8c8869e7a2139e2f904 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" 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>{020A9D4F-3C8C-48B5-830F-2EDAB07E0D97}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>LinFu.Finders</RootNamespace>
  12. <AssemblyName>LinFu.Finders</AssemblyName>
  13. <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <FileUpgradeFlags>
  16. </FileUpgradeFlags>
  17. <OldToolsVersion>3.5</OldToolsVersion>
  18. <UpgradeBackupLocation />
  19. <TargetFrameworkProfile />
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>..\..\build\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <DocumentationFile>..\..\build\Debug\LinFu.Finders.XML</DocumentationFile>
  30. <Prefer32Bit>false</Prefer32Bit>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. <DocumentationFile>bin\Release\LinFu.Finders.XML</DocumentationFile>
  40. <Prefer32Bit>false</Prefer32Bit>
  41. </PropertyGroup>
  42. <ItemGroup>
  43. <Reference Include="System" />
  44. <Reference Include="System.Core">
  45. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  46. </Reference>
  47. <Reference Include="System.Xml.Linq">
  48. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  49. </Reference>
  50. <Reference Include="System.Data.DataSetExtensions">
  51. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  52. </Reference>
  53. <Reference Include="System.Data" />
  54. <Reference Include="System.Xml" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="..\CommonAssemblyInfo.cs">
  58. <Link>Properties\CommonAssemblyInfo.cs</Link>
  59. </Compile>
  60. <Compile Include="Criteria.cs" />
  61. <Compile Include="FinderExtensions.cs" />
  62. <Compile Include="FuzzyItem.cs" />
  63. <Compile Include="Interfaces\CriteriaType.cs" />
  64. <Compile Include="Interfaces\ICriteria.cs" />
  65. <Compile Include="Interfaces\IFuzzyItem.cs" />
  66. <Compile Include="PredicateExtensions.cs" />
  67. </ItemGroup>
  68. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  69. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  70. Other similar extension points exist, see Microsoft.Common.targets.
  71. <Target Name="BeforeBuild">
  72. </Target>
  73. <Target Name="AfterBuild">
  74. </Target>
  75. -->
  76. </Project>