|
@@ -32,9 +32,9 @@
|
|
|
</ItemGroup>
|
|
|
<ItemGroup>
|
|
|
<Compile Include="BaseClasses\Disk.cs" />
|
|
|
+ <Compile Include="BaseClasses\DiskExtent.cs" />
|
|
|
<Compile Include="BaseClasses\IDiskGeometry.cs" />
|
|
|
<Compile Include="BaseClasses\Volume.cs" />
|
|
|
- <Compile Include="BaseClasses\DiskExtent.cs" />
|
|
|
<Compile Include="DiskExtent\DynamicDiskExtent.cs" />
|
|
|
<Compile Include="Disks\DiskImage.cs" />
|
|
|
<Compile Include="Disks\GuidPartitionTable\GuidPartitionEntry.cs" />
|
|
@@ -49,6 +49,8 @@
|
|
|
<Compile Include="Disks\VHD\BlockAllocationTable.cs" />
|
|
|
<Compile Include="Disks\VHD\DynamicDiskHeader.cs" />
|
|
|
<Compile Include="Disks\VHD\ParentLocatorEntry.cs" />
|
|
|
+ <Compile Include="Disks\VHD\VHDFooter.cs" />
|
|
|
+ <Compile Include="Disks\VHD\VirtualHardDisk.cs" />
|
|
|
<Compile Include="Disks\VHD\VirtualHardDiskType.cs" />
|
|
|
<Compile Include="Disks\VMDK\ExtentType.cs" />
|
|
|
<Compile Include="Disks\VMDK\SparseExtent.cs" />
|
|
@@ -59,37 +61,48 @@
|
|
|
<Compile Include="Disks\VMDK\VirtualMachineDiskType.cs" />
|
|
|
<Compile Include="Exceptions\CyclicRedundancyCheckException.cs" />
|
|
|
<Compile Include="Exceptions\DeviceNotReadyException.cs" />
|
|
|
+ <Compile Include="Exceptions\SharingViolationException.cs" />
|
|
|
<Compile Include="FileSystems\FileSystemHelper.cs" />
|
|
|
<Compile Include="FileSystems\IExtendableFileSystem.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Adapters\NTFSFileStream.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Adapters\NTFSFileSystem.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeListEntry.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeListRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\AttributeRecord\DataRecord.cs" />
|
|
|
<Compile Include="FileSystems\NTFS\AttributeRecord\FileNameAttributeRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\AttributeRecord\IndexAllocationRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\AttributeRecord\IndexRootRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\AttributeRecord\NonResidentAttributeRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\AttributeRecord\ResidentAttributeRecord.cs" />
|
|
|
<Compile Include="FileSystems\NTFS\AttributeRecord\StandardInformationRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\AttributeRecord\VolumeInformationRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\ClusterUsageBitmap.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\DataRun.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\DataRunSequence.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Enums\AttributeCollationRule.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Enums\AttributeType.cs" />
|
|
|
<Compile Include="FileSystems\NTFS\Enums\FilenameNamespace.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Adapters\NTFSFileStream.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Adapters\NTFSFileSystem.cs" />
|
|
|
- <Compile Include="Helpers\MoveHelper.cs" />
|
|
|
- <Compile Include="LogicalDiskManagerHelpers\RetainHelper.cs" />
|
|
|
- <Compile Include="LogicalDiskManager\Exceptions\DatabaseNotFoundException.cs" />
|
|
|
- <Compile Include="LogicalDiskManager\Exceptions\MissingDatabaseRecordException.cs" />
|
|
|
- <Compile Include="Volumes\RemovableVolume.cs" />
|
|
|
- <Compile Include="Disks\VHD\VHDFooter.cs" />
|
|
|
- <Compile Include="Disks\VHD\VirtualHardDisk.cs" />
|
|
|
- <Compile Include="Exceptions\SharingViolationException.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\FileRecord\FileRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\FileRecord\FileRecordSegment.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\FileRecord\MultiSectorHelper.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Index\FileNameIndexEntry.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Index\FileNameIndexLeafNode.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Index\IndexNode.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Index\IndexNodeEntry.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Index\IndexRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\MasterFileTable.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\NTFSBootRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\NTFSFile.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\NTFSVolume.Extend.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\NTFSVolume.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Structures\FileNameRecord.cs" />
|
|
|
+ <Compile Include="FileSystems\NTFS\Structures\MftSegmentReference.cs" />
|
|
|
<Compile Include="Helpers\BasicDiskHelper.cs" />
|
|
|
<Compile Include="Helpers\DiskExtentHelper.cs" />
|
|
|
- <Compile Include="Helpers\DynamicDiskExtentHelper.cs" />
|
|
|
- <Compile Include="Helpers\DynamicDiskHelper.cs" />
|
|
|
- <Compile Include="Helpers\Settings.cs" />
|
|
|
- <Compile Include="LogicalDiskManagerHelpers\AddDiskToArrayHelper.cs" />
|
|
|
- <Compile Include="Helpers\DynamicVolumeHelper.cs" />
|
|
|
<Compile Include="Helpers\ExtendHelper.Volume.cs" />
|
|
|
- <Compile Include="LogicalDiskManagerHelpers\VolumeManagerDatabaseHelper.cs" />
|
|
|
- <Compile Include="LogicalDiskManagerHelpers\MoveExtentHelper.cs" />
|
|
|
- <Compile Include="LogicalDiskManagerHelpers\RAID5ManagerBootRecord\AddDiskOperationBootRecord.cs" />
|
|
|
- <Compile Include="LogicalDiskManagerHelpers\RAID5ManagerBootRecord\MoveExtentOperationBootRecord.cs" />
|
|
|
- <Compile Include="LogicalDiskManagerHelpers\RAID5ManagerBootRecord\RAID5ManagerBootRecord.cs" />
|
|
|
+ <Compile Include="Helpers\Settings.cs" />
|
|
|
<Compile Include="Helpers\VolumeHelper.cs" />
|
|
|
- <Compile Include="LogicalDiskManager\VolumeManagerDatabase.cs" />
|
|
|
- <Compile Include="LogicalDiskManager\VolumeManagerDatabaseHeader.cs" />
|
|
|
<Compile Include="LogicalDiskManager\DatabaseRecords\ComponentRecord.cs" />
|
|
|
<Compile Include="LogicalDiskManager\DatabaseRecords\DatabaseRecord.cs" />
|
|
|
<Compile Include="LogicalDiskManager\DatabaseRecords\DatabaseRecordFragment.cs" />
|
|
@@ -100,85 +113,68 @@
|
|
|
<Compile Include="LogicalDiskManager\DiskGroupDatabase.cs" />
|
|
|
<Compile Include="LogicalDiskManager\DynamicDisk.cs" />
|
|
|
<Compile Include="LogicalDiskManager\Enums\DatabaseHeaderUpdateStatus.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\Enums\DatabaseRecordUpdateStatus.cs" />
|
|
|
<Compile Include="LogicalDiskManager\Enums\ExtentLayoutName.cs" />
|
|
|
<Compile Include="LogicalDiskManager\Enums\KernelUpdateLogEntryStatus.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\Enums\ReadPolicyName.cs" />
|
|
|
<Compile Include="LogicalDiskManager\Enums\RecordType.cs" />
|
|
|
<Compile Include="LogicalDiskManager\Enums\VolumeFlags.cs" />
|
|
|
- <Compile Include="LogicalDiskManager\Enums\ReadPolicyName.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\Exceptions\DatabaseNotFoundException.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\Exceptions\MissingDatabaseRecordException.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\Helpers\DynamicDiskExtentHelper.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\Helpers\DynamicDiskHelper.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\Helpers\DynamicVolumeHelper.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\Helpers\RetainHelper.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\Helpers\VolumeManagerDatabaseHelper.cs" />
|
|
|
<Compile Include="LogicalDiskManager\KernelUpdateLog\KernalUpdateLog.cs" />
|
|
|
<Compile Include="LogicalDiskManager\KernelUpdateLog\KernelUpdateLogPage.cs" />
|
|
|
- <Compile Include="LogicalDiskManager\Enums\DatabaseRecordUpdateStatus.cs" />
|
|
|
<Compile Include="LogicalDiskManager\PrivateHeader.cs" />
|
|
|
<Compile Include="LogicalDiskManager\TOCBlock\TOCBlock.cs" />
|
|
|
<Compile Include="LogicalDiskManager\TOCBlock\TOCRegion.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeListRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeListEntry.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\AttributeRecord\AttributeRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\AttributeRecord\DataRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Structures\FileNameRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\AttributeRecord\IndexAllocationRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\AttributeRecord\IndexRootRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\AttributeRecord\NonResidentAttributeRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\AttributeRecord\ResidentAttributeRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\AttributeRecord\VolumeInformationRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\ClusterUsageBitmap.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\DataRun.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\DataRunSequence.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Enums\AttributeCollationRule.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Enums\AttributeType.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\FileRecord\FileRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\FileRecord\FileRecordSegment.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Index\FileNameIndexEntry.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Index\FileNameIndexLeafNode.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Index\IndexNode.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Index\IndexRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Index\IndexNodeEntry.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\MasterFileTable.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\Structures\MftSegmentReference.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\FileRecord\MultiSectorHelper.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\NTFSBootRecord.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\NTFSFile.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\NTFSVolume.cs" />
|
|
|
- <Compile Include="FileSystems\NTFS\NTFSVolume.Extend.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\VolumeManagerDatabase.cs" />
|
|
|
+ <Compile Include="LogicalDiskManager\VolumeManagerDatabaseHeader.cs" />
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
<Compile Include="Volumes\DynamicColumn.cs" />
|
|
|
<Compile Include="Volumes\DynamicVolume.cs" />
|
|
|
<Compile Include="Volumes\GPTPartition.cs" />
|
|
|
+ <Compile Include="Volumes\MBRPartition.cs" />
|
|
|
<Compile Include="Volumes\MirroredVolume.cs" />
|
|
|
<Compile Include="Volumes\Partition.cs" />
|
|
|
- <Compile Include="Volumes\MBRPartition.cs" />
|
|
|
<Compile Include="Volumes\Raid5Volume.cs" />
|
|
|
+ <Compile Include="Volumes\RemovableVolume.cs" />
|
|
|
<Compile Include="Volumes\SimpleVolume.cs" />
|
|
|
<Compile Include="Volumes\SpannedVolume.cs" />
|
|
|
<Compile Include="Volumes\StripedVolume.cs" />
|
|
|
</ItemGroup>
|
|
|
<ItemGroup>
|
|
|
<Compile Include="Win32\Disks\DiskImage.Win32.cs" />
|
|
|
+ <Compile Include="Win32\Disks\PhysicalDisk.cs" />
|
|
|
+ <Compile Include="Win32\Disks\PhysicalDiskHandlePool.cs" />
|
|
|
+ <Compile Include="Win32\Disks\RawDiskImage\RawDiskImage.Win32.cs" />
|
|
|
+ <Compile Include="Win32\Disks\VHD\VirtualHardDisk.Win32.cs" />
|
|
|
<Compile Include="Win32\Disks\VMDK\SparseExtent.Win32.cs" />
|
|
|
<Compile Include="Win32\Disks\VMDK\VirtualMachineDisk.Win32.cs" />
|
|
|
<Compile Include="Win32\Enums\Win32Error.cs" />
|
|
|
<Compile Include="Win32\Helpers\DiskOfflineHelper.cs" />
|
|
|
+ <Compile Include="Win32\Helpers\LockHelper.cs" />
|
|
|
+ <Compile Include="Win32\Helpers\PhysicalDiskHelper.cs" />
|
|
|
+ <Compile Include="Win32\Helpers\WindowsVolumeHelper.cs" />
|
|
|
+ <Compile Include="Win32\Helpers\WindowsVolumeManager.cs" />
|
|
|
+ <Compile Include="Win32\LogicalDiskManager\DiskGroupDatabase.Win32.cs" />
|
|
|
+ <Compile Include="Win32\LogicalDiskManager\LockHelper.cs" />
|
|
|
+ <Compile Include="Win32\LogicalDiskManager\LockManager.cs" />
|
|
|
+ <Compile Include="Win32\LogicalDiskManager\DiskLockHelper.cs" />
|
|
|
+ <Compile Include="Win32\LogicalDiskManager\WindowsDynamicDiskHelper.cs" />
|
|
|
+ <Compile Include="Win32\LogicalDiskManager\WindowsDynamicVolumeHelper.cs" />
|
|
|
<Compile Include="Win32\Utilities\DeviceInterfaceUtils.cs" />
|
|
|
- <Compile Include="Win32\Helpers\DiskLockHelper.cs" />
|
|
|
- <Compile Include="Win32\Disks\RawDiskImage\RawDiskImage.Win32.cs" />
|
|
|
- <Compile Include="Win32\Disks\PhysicalDisk.cs" />
|
|
|
- <Compile Include="Win32\Disks\PhysicalDiskHandlePool.cs" />
|
|
|
- <Compile Include="Win32\Disks\VHD\VirtualHardDisk.Win32.cs" />
|
|
|
<Compile Include="Win32\Utilities\FileStreamEx.cs" />
|
|
|
<Compile Include="Win32\Utilities\FileStreamUtils.cs" />
|
|
|
<Compile Include="Win32\Utilities\HandleUtils.cs" />
|
|
|
- <Compile Include="Win32\Helpers\LockHelper.cs" />
|
|
|
- <Compile Include="Win32\LogicalDiskManager\DiskGroupDatabase.Win32.cs" />
|
|
|
- <Compile Include="Win32\Helpers\PhysicalDiskHelper.cs" />
|
|
|
<Compile Include="Win32\Utilities\PhysicalDiskUtils.cs" />
|
|
|
<Compile Include="Win32\Utilities\SecurityUtils.cs" />
|
|
|
+ <Compile Include="Win32\Utilities\VolumeUtils.cs" />
|
|
|
<Compile Include="Win32\Volumes\OperatingSystemVolume.cs" />
|
|
|
<Compile Include="Win32\Volumes\VolumeHandlePool.cs" />
|
|
|
- <Compile Include="Win32\Utilities\VolumeUtils.cs" />
|
|
|
- <Compile Include="Win32\Helpers\WindowsDynamicDiskHelper.cs" />
|
|
|
- <Compile Include="Win32\Helpers\WindowsDynamicVolumeHelper.cs" />
|
|
|
- <Compile Include="Win32\Helpers\WindowsVolumeHelper.cs" />
|
|
|
- <Compile Include="Win32\Helpers\WindowsVolumeManager.cs" />
|
|
|
</ItemGroup>
|
|
|
<ItemGroup>
|
|
|
<Content Include="RevisionHistory.txt" />
|