DiskAccessLibrary.csproj 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
  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. <FileUpgradeFlags>
  13. </FileUpgradeFlags>
  14. <UpgradeBackupLocation>
  15. </UpgradeBackupLocation>
  16. <OldToolsVersion>2.0</OldToolsVersion>
  17. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  18. <TargetFrameworkProfile />
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE;Win32</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <LangVersion>8</LangVersion>
  29. <Prefer32Bit>false</Prefer32Bit>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>bin\Release\</OutputPath>
  35. <DefineConstants>TRACE;Win32</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. <LangVersion>8</LangVersion>
  39. <Prefer32Bit>false</Prefer32Bit>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="System" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Include="BaseClasses\Disk.cs" />
  46. <Compile Include="BaseClasses\DiskExtent.cs" />
  47. <Compile Include="BaseClasses\IDiskGeometry.cs" />
  48. <Compile Include="BaseClasses\Volume.cs" />
  49. <Compile Include="Disks\DiskImage.cs" />
  50. <Compile Include="Disks\RAMDisk.cs" />
  51. <Compile Include="Disks\RawDiskImage\RawDiskImage.cs" />
  52. <Compile Include="Disks\VHD\BlockAllocationTable.cs" />
  53. <Compile Include="Disks\VHD\DynamicDiskHeader.cs" />
  54. <Compile Include="Disks\VHD\ParentLocatorEntry.cs" />
  55. <Compile Include="Disks\VHD\VHDFooter.cs" />
  56. <Compile Include="Disks\VHD\VirtualHardDisk.cs" />
  57. <Compile Include="Disks\VHD\VirtualHardDisk.Dynamic.cs" />
  58. <Compile Include="Disks\VHD\VirtualHardDiskType.cs" />
  59. <Compile Include="Disks\VMDK\Enums\ExtentType.cs" />
  60. <Compile Include="Disks\VMDK\Enums\SparseExtentCompression.cs" />
  61. <Compile Include="Disks\VMDK\Enums\VirtualMachineDiskType.cs" />
  62. <Compile Include="Disks\VMDK\SparseExtent.cs" />
  63. <Compile Include="Disks\VMDK\SparseExtentHeader.cs" />
  64. <Compile Include="Disks\VMDK\VirtualMachineDisk.cs" />
  65. <Compile Include="Disks\VMDK\VirtualMachineDiskDescriptor.cs" />
  66. <Compile Include="Disks\VMDK\VirtualMachineDiskExtentEntry.cs" />
  67. <Compile Include="Exceptions\AlreadyExistsException.cs" />
  68. <Compile Include="Exceptions\CyclicRedundancyCheckException.cs" />
  69. <Compile Include="Exceptions\DeviceNotReadyException.cs" />
  70. <Compile Include="Exceptions\DirectoryNotEmptyException.cs" />
  71. <Compile Include="Exceptions\DiskFullException.cs" />
  72. <Compile Include="Exceptions\SharingViolationException.cs" />
  73. <Compile Include="IoUtility.cs" />
  74. <Compile Include="FileSystems\FileSystemHelper.cs" />
  75. <Compile Include="FileSystems\IExtendableFileSystem.cs" />
  76. <Compile Include="FileSystems\NTFS\Adapters\NTFSFileStream.cs" />
  77. <Compile Include="FileSystems\NTFS\Adapters\NTFSFileSystem.cs" />
  78. <Compile Include="FileSystems\NTFS\AttributeData\AttributeData.cs" />
  79. <Compile Include="FileSystems\NTFS\AttributeData\BitmapData.cs" />
  80. <Compile Include="FileSystems\NTFS\AttributeData\AttributeList.cs" />
  81. <Compile Include="FileSystems\NTFS\AttributeData\IndexData.cs" />
  82. <Compile Include="FileSystems\NTFS\AttributeData\IndexData.FileName.cs" />
  83. <Compile Include="FileSystems\NTFS\AttributeData\NonResidentAttributeData.cs" />
  84. <Compile Include="FileSystems\NTFS\AttributeDefinition.cs" />
  85. <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeRecord.cs" />
  86. <Compile Include="FileSystems\NTFS\AttributeRecord\FileNameAttributeRecord.cs" />
  87. <Compile Include="FileSystems\NTFS\AttributeRecord\IndexAllocationRecord.cs" />
  88. <Compile Include="FileSystems\NTFS\AttributeRecord\IndexRootRecord.cs" />
  89. <Compile Include="FileSystems\NTFS\AttributeRecord\NonResidentAttributeRecord.cs" />
  90. <Compile Include="FileSystems\NTFS\AttributeRecord\ResidentAttributeRecord.cs" />
  91. <Compile Include="FileSystems\NTFS\AttributeRecord\StandardInformationRecord.cs" />
  92. <Compile Include="FileSystems\NTFS\AttributeRecord\VolumeInformationRecord.cs" />
  93. <Compile Include="FileSystems\NTFS\AttributeRecord\VolumeNameRecord.cs" />
  94. <Compile Include="FileSystems\NTFS\Enums\AttributeDefinitionFlags.cs" />
  95. <Compile Include="FileSystems\NTFS\Enums\AttributeFlags.cs" />
  96. <Compile Include="FileSystems\NTFS\Enums\AttributeForm.cs" />
  97. <Compile Include="FileSystems\NTFS\Enums\AttributeType.cs" />
  98. <Compile Include="FileSystems\NTFS\Enums\CollationRule.cs" />
  99. <Compile Include="FileSystems\NTFS\Enums\FileAttributes.cs" />
  100. <Compile Include="FileSystems\NTFS\Enums\FileNameFlags.cs" />
  101. <Compile Include="FileSystems\NTFS\Enums\FileRecordFlags.cs" />
  102. <Compile Include="FileSystems\NTFS\Enums\IndexEntryFlags.cs" />
  103. <Compile Include="FileSystems\NTFS\Enums\IndexHeaderFlags.cs" />
  104. <Compile Include="FileSystems\NTFS\Enums\ResidentForm.cs" />
  105. <Compile Include="FileSystems\NTFS\Enums\VolumeFlags.cs" />
  106. <Compile Include="FileSystems\NTFS\FileRecord\FileRecord.cs" />
  107. <Compile Include="FileSystems\NTFS\FileRecord\FileRecordHelper.cs" />
  108. <Compile Include="FileSystems\NTFS\FileRecord\FileRecordSegment.cs" />
  109. <Compile Include="FileSystems\NTFS\FileRecord\MultiSectorHelper.cs" />
  110. <Compile Include="FileSystems\NTFS\Index\CollationHelper.cs" />
  111. <Compile Include="FileSystems\NTFS\Index\DosFileNameHelper.cs" />
  112. <Compile Include="FileSystems\NTFS\Index\IndexEntry.cs" />
  113. <Compile Include="FileSystems\NTFS\Index\IndexHeader.cs" />
  114. <Compile Include="FileSystems\NTFS\Index\IndexHelper.cs" />
  115. <Compile Include="FileSystems\NTFS\Index\IndexRecord.cs" />
  116. <Compile Include="FileSystems\NTFS\Log\Enums\LfsRecordFlags.cs" />
  117. <Compile Include="FileSystems\NTFS\Log\Enums\LfsRecordPageFlags.cs" />
  118. <Compile Include="FileSystems\NTFS\Log\Enums\LfsRecordType.cs" />
  119. <Compile Include="FileSystems\NTFS\Log\Enums\LfsRestartFlags.cs" />
  120. <Compile Include="FileSystems\NTFS\Log\Enums\NTFSLogOperation.cs" />
  121. <Compile Include="FileSystems\NTFS\Log\Enums\TransactionState.cs" />
  122. <Compile Include="FileSystems\NTFS\Log\LogFile.Analysis.cs" />
  123. <Compile Include="FileSystems\NTFS\Log\LogFile.cs" />
  124. <Compile Include="FileSystems\NTFS\Log\NTFSLogClient.Analysis.cs" />
  125. <Compile Include="FileSystems\NTFS\Log\NTFSLogClient.cs" />
  126. <Compile Include="FileSystems\NTFS\Log\RestartTables\AttributeNameEntry.cs" />
  127. <Compile Include="FileSystems\NTFS\Log\RestartTables\DirtyPageEntry.cs" />
  128. <Compile Include="FileSystems\NTFS\Log\RestartTables\OpenAttributeEntry.cs" />
  129. <Compile Include="FileSystems\NTFS\Log\RestartTables\RestartTableEntry.cs" />
  130. <Compile Include="FileSystems\NTFS\Log\RestartTables\RestartTableHeader.cs" />
  131. <Compile Include="FileSystems\NTFS\Log\RestartTables\RestartTableHelper.cs" />
  132. <Compile Include="FileSystems\NTFS\Log\RestartTables\TransactionEntry.cs" />
  133. <Compile Include="FileSystems\NTFS\Log\Structures\BitmapRange.cs" />
  134. <Compile Include="FileSystems\NTFS\Log\Structures\LfsClientRecord.cs" />
  135. <Compile Include="FileSystems\NTFS\Log\Structures\LfsRecord.cs" />
  136. <Compile Include="FileSystems\NTFS\Log\Structures\LfsRecordPage.cs" />
  137. <Compile Include="FileSystems\NTFS\Log\Structures\LfsRestartArea.cs" />
  138. <Compile Include="FileSystems\NTFS\Log\Structures\LfsRestartPage.cs" />
  139. <Compile Include="FileSystems\NTFS\Log\Structures\NTFSLogRecord.cs" />
  140. <Compile Include="FileSystems\NTFS\Log\Structures\NTFSRestartRecord.cs" />
  141. <Compile Include="FileSystems\NTFS\MasterFileTable.cs" />
  142. <Compile Include="FileSystems\NTFS\NTFSBootRecord.cs" />
  143. <Compile Include="FileSystems\NTFS\NTFSFile.cs" />
  144. <Compile Include="FileSystems\NTFS\NTFSVolume.cs" />
  145. <Compile Include="FileSystems\NTFS\NTFSVolume.Extend.cs" />
  146. <Compile Include="FileSystems\NTFS\NTFSVolume.Recovery.cs" />
  147. <Compile Include="FileSystems\NTFS\Structures\AttributeDefinitionEntry.cs" />
  148. <Compile Include="FileSystems\NTFS\Structures\AttributeListEntry.cs" />
  149. <Compile Include="FileSystems\NTFS\Structures\DataRun.cs" />
  150. <Compile Include="FileSystems\NTFS\Structures\DataRunSequence.cs" />
  151. <Compile Include="FileSystems\NTFS\Structures\DuplicatedInformation.cs" />
  152. <Compile Include="FileSystems\NTFS\Structures\FileNameRecord.cs" />
  153. <Compile Include="FileSystems\NTFS\Structures\MftSegmentReference.cs" />
  154. <Compile Include="FileSystems\NTFS\Structures\MultiSectorHeader.cs" />
  155. <Compile Include="FileSystems\NTFS\VolumeBitmap.cs" />
  156. <Compile Include="Helpers\BasicDiskHelper.cs" />
  157. <Compile Include="Helpers\DiskExtentHelper.cs" />
  158. <Compile Include="Helpers\DiskExtentsHelper.cs" />
  159. <Compile Include="Helpers\ExtendHelper.Volume.cs" />
  160. <Compile Include="Helpers\Settings.cs" />
  161. <Compile Include="Helpers\VolumeHelper.cs" />
  162. <Compile Include="LogicalDiskManager\DatabaseRecords\ComponentRecord.cs" />
  163. <Compile Include="LogicalDiskManager\DatabaseRecords\DatabaseRecord.cs" />
  164. <Compile Include="LogicalDiskManager\DatabaseRecords\DatabaseRecordFragment.cs" />
  165. <Compile Include="LogicalDiskManager\DatabaseRecords\DiskGroupRecord.cs" />
  166. <Compile Include="LogicalDiskManager\DatabaseRecords\DiskRecord.cs" />
  167. <Compile Include="LogicalDiskManager\DatabaseRecords\ExtentRecord.cs" />
  168. <Compile Include="LogicalDiskManager\DatabaseRecords\VolumeRecord.cs" />
  169. <Compile Include="LogicalDiskManager\DiskGroupDatabase.cs" />
  170. <Compile Include="LogicalDiskManager\DynamicDisk.cs" />
  171. <Compile Include="LogicalDiskManager\DynamicDiskExtent.cs" />
  172. <Compile Include="LogicalDiskManager\Enums\DatabaseHeaderUpdateStatus.cs" />
  173. <Compile Include="LogicalDiskManager\Enums\DatabaseRecordUpdateStatus.cs" />
  174. <Compile Include="LogicalDiskManager\Enums\ExtentLayoutName.cs" />
  175. <Compile Include="LogicalDiskManager\Enums\KernelUpdateLogEntryStatus.cs" />
  176. <Compile Include="LogicalDiskManager\Enums\ReadPolicyName.cs" />
  177. <Compile Include="LogicalDiskManager\Enums\RecordType.cs" />
  178. <Compile Include="LogicalDiskManager\Enums\VolumeFlags.cs" />
  179. <Compile Include="LogicalDiskManager\Exceptions\MissingDatabaseRecordException.cs" />
  180. <Compile Include="LogicalDiskManager\Helpers\DynamicDiskExtentHelper.cs" />
  181. <Compile Include="LogicalDiskManager\Helpers\DynamicDiskExtentsHelper.cs" />
  182. <Compile Include="LogicalDiskManager\Helpers\DynamicDiskHelper.cs" />
  183. <Compile Include="LogicalDiskManager\Helpers\DynamicDiskHelper.Extents.cs" />
  184. <Compile Include="LogicalDiskManager\Helpers\DynamicVolumeHelper.cs" />
  185. <Compile Include="LogicalDiskManager\Helpers\PrivateRegionHelper.cs" />
  186. <Compile Include="LogicalDiskManager\Helpers\PublicRegionHelper.cs" />
  187. <Compile Include="LogicalDiskManager\Helpers\RetainHelper.cs" />
  188. <Compile Include="LogicalDiskManager\Helpers\VolumeManagerDatabaseHelper.cs" />
  189. <Compile Include="LogicalDiskManager\KernelUpdateLog\KernalUpdateLog.cs" />
  190. <Compile Include="LogicalDiskManager\KernelUpdateLog\KernelUpdateLogPage.cs" />
  191. <Compile Include="LogicalDiskManager\PrivateHeader.cs" />
  192. <Compile Include="LogicalDiskManager\TOCBlock\TOCBlock.cs" />
  193. <Compile Include="LogicalDiskManager\TOCBlock\TOCRegion.cs" />
  194. <Compile Include="LogicalDiskManager\VolumeManagerDatabase.cs" />
  195. <Compile Include="LogicalDiskManager\VolumeManagerDatabaseCopy.cs" />
  196. <Compile Include="LogicalDiskManager\VolumeManagerDatabaseHeader.cs" />
  197. <Compile Include="LogicalDiskManager\Volumes\DynamicColumn.cs" />
  198. <Compile Include="LogicalDiskManager\Volumes\DynamicVolume.cs" />
  199. <Compile Include="LogicalDiskManager\Volumes\MirroredVolume.cs" />
  200. <Compile Include="LogicalDiskManager\Volumes\Raid5Volume.cs" />
  201. <Compile Include="LogicalDiskManager\Volumes\SimpleVolume.cs" />
  202. <Compile Include="LogicalDiskManager\Volumes\SpannedVolume.cs" />
  203. <Compile Include="LogicalDiskManager\Volumes\StripedVolume.cs" />
  204. <Compile Include="Mod\BlockDifferencingDiskImage\BddInfo.cs" />
  205. <Compile Include="Mod\BlockDifferencingDiskImage\BlockDifferencingDiskImage.cs" />
  206. <Compile Include="Mod\PhysicalDiskDifferencingDiskImage\PddInfo.cs" />
  207. <Compile Include="Mod\PhysicalDiskDifferencingDiskImage\PhysicalDiskDifferencingDiskImage.cs" />
  208. <Compile Include="Mod\Utility\BlockEntryAllocateFlagIndexer.cs" />
  209. <Compile Include="Mod\Utility\BlockEntryOffsetIndexer.cs" />
  210. <Compile Include="Mod\Utility\ReadOnlyIndexer.cs" />
  211. <Compile Include="Mod\Consts.cs" />
  212. <Compile Include="Mod\DiskImage.cs" />
  213. <Compile Include="Mod\DiskImageCreator.cs" />
  214. <Compile Include="Mod\DiskImageFormat.cs" />
  215. <Compile Include="Mod\DiskImageType.cs" />
  216. <Compile Include="Mod\ILoadableRamDisk.cs" />
  217. <Compile Include="Mod\LargeRamDisk.cs" />
  218. <Compile Include="Mod\RAMDisk.cs" />
  219. <Compile Include="Mod\UnmanagedGigabyteBlockSeparatedRamDisk.cs" />
  220. <Compile Include="PartitionTables\GuidPartitionTable\GuidPartitionEntry.cs" />
  221. <Compile Include="PartitionTables\GuidPartitionTable\GuidPartitionEntryCollection.cs" />
  222. <Compile Include="PartitionTables\GuidPartitionTable\GuidPartitionTable.cs" />
  223. <Compile Include="PartitionTables\GuidPartitionTable\GuidPartitionTableHeader.cs" />
  224. <Compile Include="PartitionTables\MasterBootRecord\CHSAddress.cs" />
  225. <Compile Include="PartitionTables\MasterBootRecord\MasterBootRecord.cs" />
  226. <Compile Include="PartitionTables\MasterBootRecord\PartitionTableEntry.cs" />
  227. <Compile Include="PartitionTables\MasterBootRecord\PartitionTypeName.cs" />
  228. <Compile Include="Properties\AssemblyInfo.cs" />
  229. <Compile Include="Volumes\GPTPartition.cs" />
  230. <Compile Include="Volumes\MBRPartition.cs" />
  231. <Compile Include="Volumes\Partition.cs" />
  232. <Compile Include="Volumes\RemovableVolume.cs" />
  233. </ItemGroup>
  234. <ItemGroup>
  235. <Compile Include="Win32\Disks\PhysicalDisk.cs" />
  236. <Compile Include="Win32\Disks\PhysicalDiskHandlePool.cs" />
  237. <Compile Include="Win32\Enums\Win32Error.cs" />
  238. <Compile Include="Win32\Helpers\DiskOfflineHelper.cs" />
  239. <Compile Include="Win32\Helpers\IOExceptionHelper.cs" />
  240. <Compile Include="Win32\Helpers\LockHelper.cs" />
  241. <Compile Include="Win32\Helpers\PhysicalDiskHelper.cs" />
  242. <Compile Include="Win32\Helpers\WindowsVolumeHelper.cs" />
  243. <Compile Include="Win32\Helpers\WindowsVolumeManager.cs" />
  244. <Compile Include="Win32\LogicalDiskManager\DiskGroupDatabase.Win32.cs" />
  245. <Compile Include="Win32\LogicalDiskManager\LockHelper.cs" />
  246. <Compile Include="Win32\LogicalDiskManager\LockManager.cs" />
  247. <Compile Include="Win32\LogicalDiskManager\DiskLockHelper.cs" />
  248. <Compile Include="Win32\LogicalDiskManager\WindowsDynamicDiskHelper.cs" />
  249. <Compile Include="Win32\LogicalDiskManager\WindowsDynamicVolumeHelper.cs" />
  250. <Compile Include="Win32\Utilities\DeviceInterfaceUtils.cs" />
  251. <Compile Include="Win32\Utilities\FileStreamEx.cs" />
  252. <Compile Include="Win32\Utilities\FileStreamUtils.cs" />
  253. <Compile Include="Win32\Utilities\HandleUtils.cs" />
  254. <Compile Include="Win32\Utilities\PhysicalDiskControl.cs" />
  255. <Compile Include="Win32\Utilities\SecurityUtils.cs" />
  256. <Compile Include="Win32\Utilities\VolumeControl.cs" />
  257. <Compile Include="Win32\Volumes\OperatingSystemVolume.cs" />
  258. <Compile Include="Win32\Volumes\VolumeHandlePool.cs" />
  259. </ItemGroup>
  260. <ItemGroup>
  261. <Content Include="Mod\BlockDifferencingDiskImage\BddFormat.txt" />
  262. <Content Include="Mod\PhysicalDiskDifferencingDiskImage\PddFormat.txt" />
  263. <Content Include="RevisionHistory.txt" />
  264. </ItemGroup>
  265. <ItemGroup>
  266. <ProjectReference Include="..\Utilities\Utilities.csproj">
  267. <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
  268. <Name>Utilities</Name>
  269. </ProjectReference>
  270. </ItemGroup>
  271. <ItemGroup />
  272. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  273. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  274. Other similar extension points exist, see Microsoft.Common.targets.
  275. <Target Name="BeforeBuild">
  276. </Target>
  277. <Target Name="AfterBuild">
  278. </Target>
  279. -->
  280. </Project>