Y.FileQueryEngine.csproj 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{497F570C-8398-458D-970C-DFA3DD9FE746}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Y.FileQueryEngine</RootNamespace>
  11. <AssemblyName>Y.FileQueryEngine</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <DocumentationFile>bin\Debug\Y.FileQueryEngine.XML</DocumentationFile>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <Prefer32Bit>false</Prefer32Bit>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Xml.Linq" />
  40. <Reference Include="System.Data.DataSetExtensions" />
  41. <Reference Include="Microsoft.CSharp" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Net.Http" />
  44. <Reference Include="System.Xml" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="Properties\AssemblyInfo.cs" />
  48. <Compile Include="QueryEngine\FileQueryEngine.cs" />
  49. <Compile Include="QueryEngine\FileAndDirectoryEntry.cs" />
  50. <Compile Include="QueryEngine\FrnFilePath.cs" />
  51. <Compile Include="UsnOperation\UsnControlCode.cs" />
  52. <Compile Include="UsnOperation\UsnEntry.cs" />
  53. <Compile Include="UsnOperation\UsnErrorCode.cs" />
  54. <Compile Include="UsnOperation\UsnJournalData.cs" />
  55. <Compile Include="UsnOperation\UsnOperator.cs" />
  56. <Compile Include="UsnOperation\UsnReasonCode.cs" />
  57. <Compile Include="Win32\Constants\Win32ApiConstant.cs" />
  58. <Compile Include="Win32\Structures\BY_HANDLE_FILE_INFORMATION.cs" />
  59. <Compile Include="Win32\Structures\CREATE_USN_JOURNAL_DATA.cs" />
  60. <Compile Include="Win32\Structures\MFT_ENUM_DATA.cs" />
  61. <Compile Include="Win32\Structures\POINT.cs" />
  62. <Compile Include="Win32\Structures\READ_USN_JOURNAL_DATA.cs" />
  63. <Compile Include="Win32\Structures\USN_JOURNAL_DATA.cs" />
  64. <Compile Include="Win32\Structures\USN_RECORD_V2.cs" />
  65. <Compile Include="Win32\Win32Api.cs" />
  66. </ItemGroup>
  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>