DiskAccessLibrary.csproj 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5. <ProductVersion>8.0.50727</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{000D0367-63A1-475D-982D-67A0B93BABEB}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>DiskAccessLibrary</RootNamespace>
  11. <AssemblyName>DiskAccessLibrary</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug\</OutputPath>
  18. <DefineConstants>DEBUG;TRACE;Win32</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23. <DebugType>pdbonly</DebugType>
  24. <Optimize>true</Optimize>
  25. <OutputPath>bin\Release\</OutputPath>
  26. <DefineConstants>TRACE;Win32</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Reference Include="System" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Compile Include="BaseClasses\Disk.cs" />
  35. <Compile Include="BaseClasses\DiskExtent.cs" />
  36. <Compile Include="BaseClasses\IDiskGeometry.cs" />
  37. <Compile Include="BaseClasses\Volume.cs" />
  38. <Compile Include="Disks\DiskImage.cs" />
  39. <Compile Include="Disks\RAMDisk.cs" />
  40. <Compile Include="Disks\RawDiskImage\RawDiskImage.cs" />
  41. <Compile Include="Disks\VHD\BlockAllocationTable.cs" />
  42. <Compile Include="Disks\VHD\DynamicDiskHeader.cs" />
  43. <Compile Include="Disks\VHD\ParentLocatorEntry.cs" />
  44. <Compile Include="Disks\VHD\VHDFooter.cs" />
  45. <Compile Include="Disks\VHD\VirtualHardDisk.cs" />
  46. <Compile Include="Disks\VHD\VirtualHardDiskType.cs" />
  47. <Compile Include="Disks\VMDK\ExtentType.cs" />
  48. <Compile Include="Disks\VMDK\SparseExtent.cs" />
  49. <Compile Include="Disks\VMDK\SparseExtentHeader.cs" />
  50. <Compile Include="Disks\VMDK\VirtualMachineDisk.cs" />
  51. <Compile Include="Disks\VMDK\VirtualMachineDiskDescriptor.cs" />
  52. <Compile Include="Disks\VMDK\VirtualMachineDiskExtentEntry.cs" />
  53. <Compile Include="Disks\VMDK\VirtualMachineDiskType.cs" />
  54. <Compile Include="Exceptions\CyclicRedundancyCheckException.cs" />
  55. <Compile Include="Exceptions\DeviceNotReadyException.cs" />
  56. <Compile Include="Exceptions\SharingViolationException.cs" />
  57. <Compile Include="FileSystems\FileSystemHelper.cs" />
  58. <Compile Include="FileSystems\IExtendableFileSystem.cs" />
  59. <Compile Include="FileSystems\NTFS\Adapters\NTFSFileStream.cs" />
  60. <Compile Include="FileSystems\NTFS\Adapters\NTFSFileSystem.cs" />
  61. <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeListEntry.cs" />
  62. <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeListRecord.cs" />
  63. <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeRecord.cs" />
  64. <Compile Include="FileSystems\NTFS\AttributeRecord\DataRecord.cs" />
  65. <Compile Include="FileSystems\NTFS\AttributeRecord\FileNameAttributeRecord.cs" />
  66. <Compile Include="FileSystems\NTFS\AttributeRecord\IndexAllocationRecord.cs" />
  67. <Compile Include="FileSystems\NTFS\AttributeRecord\IndexRootRecord.cs" />
  68. <Compile Include="FileSystems\NTFS\AttributeRecord\NonResidentAttributeRecord.cs" />
  69. <Compile Include="FileSystems\NTFS\AttributeRecord\ResidentAttributeRecord.cs" />
  70. <Compile Include="FileSystems\NTFS\AttributeRecord\StandardInformationRecord.cs" />
  71. <Compile Include="FileSystems\NTFS\AttributeRecord\VolumeInformationRecord.cs" />
  72. <Compile Include="FileSystems\NTFS\ClusterUsageBitmap.cs" />
  73. <Compile Include="FileSystems\NTFS\DataRun.cs" />
  74. <Compile Include="FileSystems\NTFS\DataRunSequence.cs" />
  75. <Compile Include="FileSystems\NTFS\Enums\AttributeCollationRule.cs" />
  76. <Compile Include="FileSystems\NTFS\Enums\AttributeType.cs" />
  77. <Compile Include="FileSystems\NTFS\Enums\FilenameNamespace.cs" />
  78. <Compile Include="FileSystems\NTFS\FileRecord\FileRecord.cs" />
  79. <Compile Include="FileSystems\NTFS\FileRecord\FileRecordSegment.cs" />
  80. <Compile Include="FileSystems\NTFS\FileRecord\MultiSectorHelper.cs" />
  81. <Compile Include="FileSystems\NTFS\Index\FileNameIndexEntry.cs" />
  82. <Compile Include="FileSystems\NTFS\Index\FileNameIndexLeafNode.cs" />
  83. <Compile Include="FileSystems\NTFS\Index\IndexNode.cs" />
  84. <Compile Include="FileSystems\NTFS\Index\IndexNodeEntry.cs" />
  85. <Compile Include="FileSystems\NTFS\Index\IndexRecord.cs" />
  86. <Compile Include="FileSystems\NTFS\MasterFileTable.cs" />
  87. <Compile Include="FileSystems\NTFS\NTFSBootRecord.cs" />
  88. <Compile Include="FileSystems\NTFS\NTFSFile.cs" />
  89. <Compile Include="FileSystems\NTFS\NTFSVolume.Extend.cs" />
  90. <Compile Include="FileSystems\NTFS\NTFSVolume.cs" />
  91. <Compile Include="FileSystems\NTFS\Structures\FileNameRecord.cs" />
  92. <Compile Include="FileSystems\NTFS\Structures\MftSegmentReference.cs" />
  93. <Compile Include="Helpers\BasicDiskHelper.cs" />
  94. <Compile Include="Helpers\DiskExtentHelper.cs" />
  95. <Compile Include="Helpers\DiskExtentsHelper.cs" />
  96. <Compile Include="Helpers\ExtendHelper.Volume.cs" />
  97. <Compile Include="Helpers\Settings.cs" />
  98. <Compile Include="Helpers\VolumeHelper.cs" />
  99. <Compile Include="LogicalDiskManager\DatabaseRecords\ComponentRecord.cs" />
  100. <Compile Include="LogicalDiskManager\DatabaseRecords\DatabaseRecord.cs" />
  101. <Compile Include="LogicalDiskManager\DatabaseRecords\DatabaseRecordFragment.cs" />
  102. <Compile Include="LogicalDiskManager\DatabaseRecords\DiskGroupRecord.cs" />
  103. <Compile Include="LogicalDiskManager\DatabaseRecords\DiskRecord.cs" />
  104. <Compile Include="LogicalDiskManager\DatabaseRecords\ExtentRecord.cs" />
  105. <Compile Include="LogicalDiskManager\DatabaseRecords\VolumeRecord.cs" />
  106. <Compile Include="LogicalDiskManager\DiskGroupDatabase.cs" />
  107. <Compile Include="LogicalDiskManager\DynamicDisk.cs" />
  108. <Compile Include="LogicalDiskManager\DynamicDiskExtent.cs" />
  109. <Compile Include="LogicalDiskManager\Enums\DatabaseHeaderUpdateStatus.cs" />
  110. <Compile Include="LogicalDiskManager\Enums\DatabaseRecordUpdateStatus.cs" />
  111. <Compile Include="LogicalDiskManager\Enums\ExtentLayoutName.cs" />
  112. <Compile Include="LogicalDiskManager\Enums\KernelUpdateLogEntryStatus.cs" />
  113. <Compile Include="LogicalDiskManager\Enums\ReadPolicyName.cs" />
  114. <Compile Include="LogicalDiskManager\Enums\RecordType.cs" />
  115. <Compile Include="LogicalDiskManager\Enums\VolumeFlags.cs" />
  116. <Compile Include="LogicalDiskManager\Exceptions\DatabaseNotFoundException.cs" />
  117. <Compile Include="LogicalDiskManager\Exceptions\MissingDatabaseRecordException.cs" />
  118. <Compile Include="LogicalDiskManager\Helpers\DynamicDiskExtentHelper.cs" />
  119. <Compile Include="LogicalDiskManager\Helpers\DynamicDiskExtentsHelper.cs" />
  120. <Compile Include="LogicalDiskManager\Helpers\DynamicDiskHelper.cs" />
  121. <Compile Include="LogicalDiskManager\Helpers\DynamicDiskHelper.Extents.cs" />
  122. <Compile Include="LogicalDiskManager\Helpers\DynamicVolumeHelper.cs" />
  123. <Compile Include="LogicalDiskManager\Helpers\PublicRegionHelper.cs" />
  124. <Compile Include="LogicalDiskManager\Helpers\PrivateRegionHelper.cs" />
  125. <Compile Include="LogicalDiskManager\Helpers\RetainHelper.cs" />
  126. <Compile Include="LogicalDiskManager\Helpers\VolumeManagerDatabaseHelper.cs" />
  127. <Compile Include="LogicalDiskManager\KernelUpdateLog\KernalUpdateLog.cs" />
  128. <Compile Include="LogicalDiskManager\KernelUpdateLog\KernelUpdateLogPage.cs" />
  129. <Compile Include="LogicalDiskManager\PrivateHeader.cs" />
  130. <Compile Include="LogicalDiskManager\TOCBlock\TOCBlock.cs" />
  131. <Compile Include="LogicalDiskManager\TOCBlock\TOCRegion.cs" />
  132. <Compile Include="LogicalDiskManager\VolumeManagerDatabase.cs" />
  133. <Compile Include="LogicalDiskManager\VolumeManagerDatabaseHeader.cs" />
  134. <Compile Include="LogicalDiskManager\Volumes\DynamicColumn.cs" />
  135. <Compile Include="LogicalDiskManager\Volumes\DynamicVolume.cs" />
  136. <Compile Include="LogicalDiskManager\Volumes\MirroredVolume.cs" />
  137. <Compile Include="LogicalDiskManager\Volumes\Raid5Volume.cs" />
  138. <Compile Include="LogicalDiskManager\Volumes\SimpleVolume.cs" />
  139. <Compile Include="LogicalDiskManager\Volumes\SpannedVolume.cs" />
  140. <Compile Include="LogicalDiskManager\Volumes\StripedVolume.cs" />
  141. <Compile Include="PartitionTables\GuidPartitionTable\GuidPartitionEntry.cs" />
  142. <Compile Include="PartitionTables\GuidPartitionTable\GuidPartitionEntryCollection.cs" />
  143. <Compile Include="PartitionTables\GuidPartitionTable\GuidPartitionTable.cs" />
  144. <Compile Include="PartitionTables\GuidPartitionTable\GuidPartitionTableHeader.cs" />
  145. <Compile Include="PartitionTables\MasterBootRecord\CHSAddress.cs" />
  146. <Compile Include="PartitionTables\MasterBootRecord\MasterBootRecord.cs" />
  147. <Compile Include="PartitionTables\MasterBootRecord\PartitionTableEntry.cs" />
  148. <Compile Include="PartitionTables\MasterBootRecord\PartitionTypeName.cs" />
  149. <Compile Include="Properties\AssemblyInfo.cs" />
  150. <Compile Include="Volumes\GPTPartition.cs" />
  151. <Compile Include="Volumes\MBRPartition.cs" />
  152. <Compile Include="Volumes\Partition.cs" />
  153. <Compile Include="Volumes\RemovableVolume.cs" />
  154. </ItemGroup>
  155. <ItemGroup>
  156. <Compile Include="Win32\Disks\PhysicalDisk.cs" />
  157. <Compile Include="Win32\Disks\PhysicalDiskHandlePool.cs" />
  158. <Compile Include="Win32\Enums\Win32Error.cs" />
  159. <Compile Include="Win32\Helpers\DiskOfflineHelper.cs" />
  160. <Compile Include="Win32\Helpers\LockHelper.cs" />
  161. <Compile Include="Win32\Helpers\PhysicalDiskHelper.cs" />
  162. <Compile Include="Win32\Helpers\WindowsVolumeHelper.cs" />
  163. <Compile Include="Win32\Helpers\WindowsVolumeManager.cs" />
  164. <Compile Include="Win32\LogicalDiskManager\DiskGroupDatabase.Win32.cs" />
  165. <Compile Include="Win32\LogicalDiskManager\LockHelper.cs" />
  166. <Compile Include="Win32\LogicalDiskManager\LockManager.cs" />
  167. <Compile Include="Win32\LogicalDiskManager\DiskLockHelper.cs" />
  168. <Compile Include="Win32\LogicalDiskManager\WindowsDynamicDiskHelper.cs" />
  169. <Compile Include="Win32\LogicalDiskManager\WindowsDynamicVolumeHelper.cs" />
  170. <Compile Include="Win32\Utilities\DeviceInterfaceUtils.cs" />
  171. <Compile Include="Win32\Utilities\FileStreamEx.cs" />
  172. <Compile Include="Win32\Utilities\FileStreamUtils.cs" />
  173. <Compile Include="Win32\Utilities\HandleUtils.cs" />
  174. <Compile Include="Win32\Utilities\PhysicalDiskControl.cs" />
  175. <Compile Include="Win32\Utilities\SecurityUtils.cs" />
  176. <Compile Include="Win32\Utilities\VolumeControl.cs" />
  177. <Compile Include="Win32\Volumes\OperatingSystemVolume.cs" />
  178. <Compile Include="Win32\Volumes\VolumeHandlePool.cs" />
  179. </ItemGroup>
  180. <ItemGroup>
  181. <Content Include="RevisionHistory.txt" />
  182. </ItemGroup>
  183. <ItemGroup>
  184. <ProjectReference Include="..\Utilities\Utilities.csproj">
  185. <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
  186. <Name>Utilities</Name>
  187. </ProjectReference>
  188. </ItemGroup>
  189. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  190. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  191. Other similar extension points exist, see Microsoft.Common.targets.
  192. <Target Name="BeforeBuild">
  193. </Target>
  194. <Target Name="AfterBuild">
  195. </Target>
  196. -->
  197. </Project>