mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* README.md: * DiscImageChef.Partitions/GPT.cs: * DiscImageChef.Partitions/DiscImageChef.Partitions.csproj: Added support for EFI GPT. Fixes #8. * commandline: * DiscImageChef.Decoders/SCSI/Sense.cs: Corrected handling when sense contains multiple repeated sense codes, in a not clean way (just ignoring repeats). * DiscImageChef.Filesystems/Acorn.cs: Added exception catching and unsigned values to correct Acorn DiscRecord structure. Fixes #34 * DiscImageChef/Commands/DeviceReport.cs: Check for 36 blocks in long block search in all cases. * DiscImageChef/Commands/DumpMedia.cs: Only try the persistent pass one time. If it didn't correct in the previous cycle it won't magically do now. Sort unreadalbe sectors before printing them.
69 lines
3.0 KiB
XML
69 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{DA7AB65D-B5BA-4003-8893-A51BB071BA2F}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>DiscImageChef.Partitions</RootNamespace>
|
|
<AssemblyName>DiscImageChef.Partitions</AssemblyName>
|
|
<ReleaseVersion>2.2</ReleaseVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
<DefineConstants>DEBUG;</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<ConsolePause>false</ConsolePause>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>full</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release</OutputPath>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<ConsolePause>false</ConsolePause>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="AppleMap.cs" />
|
|
<Compile Include="Atari.cs" />
|
|
<Compile Include="MBR.cs" />
|
|
<Compile Include="NeXT.cs" />
|
|
<Compile Include="PartPlugin.cs" />
|
|
<Compile Include="RDB.cs" />
|
|
<Compile Include="Sun.cs" />
|
|
<Compile Include="GPT.cs" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DiscImageChef.CommonTypes\DiscImageChef.CommonTypes.csproj">
|
|
<Project>{F2B84194-26EB-4227-B1C5-6602517E85AE}</Project>
|
|
<Name>DiscImageChef.CommonTypes</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\DiscImageChef.Helpers\DiscImageChef.Helpers.csproj">
|
|
<Project>{F8BDF57B-1571-4CD0-84B3-B422088D359A}</Project>
|
|
<Name>DiscImageChef.Helpers</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\DiscImageChef.DiscImages\DiscImageChef.DiscImages.csproj">
|
|
<Project>{74032CBC-339B-42F3-AF6F-E96C261F3E6A}</Project>
|
|
<Name>DiscImageChef.DiscImages</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\DiscImageChef.Checksums\DiscImageChef.Checksums.csproj">
|
|
<Project>{CC48B324-A532-4A45-87A6-6F91F7141E8D}</Project>
|
|
<Name>DiscImageChef.Checksums</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\DiscImageChef.Console\DiscImageChef.Console.csproj">
|
|
<Project>{CCAA7AFE-C094-4D82-A66D-630DE8A3F545}</Project>
|
|
<Name>DiscImageChef.Console</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
</Project> |