2017-12-21 02:03:21 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-04-11 08:13:49 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-03-07 07:36:42 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
|
<ProjectGuid>{0BEB3088-B634-4289-AE17-CDF2D25D00D5}</ProjectGuid>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<RootNamespace>Aaru.Decoders</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Aaru.Decoders</AssemblyName>
|
|
|
|
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
|
|
|
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
|
|
|
|
<Version>6.0.0-alpha8</Version>
|
|
|
|
|
|
<Company>Claunia.com</Company>
|
|
|
|
|
|
<Copyright>Copyright © 2011-2022 Natalia Portillo</Copyright>
|
|
|
|
|
|
<Product>Aaru Data Preservation Suite</Product>
|
|
|
|
|
|
<Title>Aaru.Decoders</Title>
|
|
|
|
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
2022-11-13 12:46:17 +00:00
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-11-13 12:48:41 +00:00
|
|
|
|
<LangVersion>11</LangVersion>
|
2022-03-07 07:36:42 +00:00
|
|
|
|
<Description>Binary structure decoders used by the Aaru Data Preservation Suite.</Description>
|
|
|
|
|
|
<PackageProjectUrl>https://github.com/aaru-dps/</PackageProjectUrl>
|
|
|
|
|
|
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
|
|
|
|
|
|
<RepositoryUrl>https://github.com/aaru-dps/Aaru</RepositoryUrl>
|
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
|
|
<Authors>Natalia Portillo <claunia@claunia.com></Authors>
|
|
|
|
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
2022-11-13 17:13:09 +00:00
|
|
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
2022-03-07 07:36:42 +00:00
|
|
|
|
</PropertyGroup>
|
2022-11-13 13:19:56 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
|
<NoWarn>CS1591;CS1574</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
2022-11-13 16:38:17 +00:00
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests"/>
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests.Devices"/>
|
|
|
|
|
|
</ItemGroup>
|
2022-03-07 07:36:42 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:50:26 +00:00
|
|
|
|
<Compile Include="Bluray\BCA.cs" />
|
|
|
|
|
|
<Compile Include="Bluray\Cartridge.cs" />
|
|
|
|
|
|
<Compile Include="Bluray\DDS.cs" />
|
|
|
|
|
|
<Compile Include="Bluray\DI.cs" />
|
|
|
|
|
|
<Compile Include="Bluray\Spare.cs" />
|
|
|
|
|
|
<Compile Include="CD\SectorBuilder.cs" />
|
|
|
|
|
|
<Compile Include="CD\Subchannel.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Inquiry.cs" />
|
|
|
|
|
|
<Compile Include="Floppy\Enums.cs" />
|
|
|
|
|
|
<Compile Include="Floppy\System3740.cs" />
|
|
|
|
|
|
<Compile Include="Floppy\System34.cs" />
|
|
|
|
|
|
<Compile Include="Floppy\Perpendicular.cs" />
|
|
|
|
|
|
<Compile Include="Floppy\ISO.cs" />
|
|
|
|
|
|
<Compile Include="Floppy\Apple2.cs" />
|
|
|
|
|
|
<Compile Include="Floppy\AppleSony.cs" />
|
|
|
|
|
|
<Compile Include="Floppy\Commodore.cs" />
|
|
|
|
|
|
<Compile Include="Floppy\Amiga.cs" />
|
|
|
|
|
|
<Compile Include="DVD\Enums.cs" />
|
|
|
|
|
|
<Compile Include="DVD\PFI.cs" />
|
|
|
|
|
|
<Compile Include="DVD\DMI.cs" />
|
|
|
|
|
|
<Compile Include="DVD\BCA.cs" />
|
|
|
|
|
|
<Compile Include="DVD\DDS.cs" />
|
|
|
|
|
|
<Compile Include="DVD\RMD.cs" />
|
|
|
|
|
|
<Compile Include="DVD\Spare.cs" />
|
|
|
|
|
|
<Compile Include="DVD\PRI.cs" />
|
|
|
|
|
|
<Compile Include="DVD\UDI.cs" />
|
|
|
|
|
|
<Compile Include="DVD\ADIP.cs" />
|
|
|
|
|
|
<Compile Include="DVD\Layers.cs" />
|
|
|
|
|
|
<Compile Include="DVD\AACS.cs" />
|
|
|
|
|
|
<Compile Include="DVD\CSS&CPRM.cs" />
|
|
|
|
|
|
<Compile Include="DVD\CPRM.cs" />
|
|
|
|
|
|
<Compile Include="DVD\Cartridge.cs" />
|
|
|
|
|
|
<Compile Include="CD\TOC.cs" />
|
|
|
|
|
|
<Compile Include="CD\Session.cs" />
|
|
|
|
|
|
<Compile Include="CD\FullTOC.cs" />
|
|
|
|
|
|
<Compile Include="CD\PMA.cs" />
|
|
|
|
|
|
<Compile Include="CD\ATIP.cs" />
|
|
|
|
|
|
<Compile Include="CD\Enums.cs" />
|
|
|
|
|
|
<Compile Include="CD\CDTextOnLeadIn.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\MMC\AACS.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\MMC\CPRM.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\MMC\Enums.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\MMC\Hybrid.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\MMC\TrackInformation.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\MMC\WriteProtect.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\MMC\DiscInformation.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\00_SFF.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\01.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\01_MMC.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\02.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\03.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\04.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\05.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\06.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\07.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\07_MMC.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\08.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\0A.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\0B.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\0C.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\0D.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\0E.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\0F.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\10.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\10_SSC.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\11.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\12_13_14.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\1A.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\1B.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\1C.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\1C_SFF.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\1D.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\21_Certance.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\22_Certance.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\24_IBM.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\2A.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\2F_IBM.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\30_Apple.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\3B_HP.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\3C_HP.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\3D_HP.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\3D_IBM.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\3E_Fujitsu.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\3E_HP.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\Headers.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\Mode10.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\Mode6.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Modes\Structs.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\VendorString.cs" />
|
|
|
|
|
|
<Compile Include="ATA\Identify.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\EVPD.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\MMC\Features.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\DiscStructureCapabilities.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Sense.cs" />
|
|
|
|
|
|
<Compile Include="ATA\Registers.cs" />
|
|
|
|
|
|
<Compile Include="Xbox\DMI.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\SSC\BlockLimits.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\SSC\DensitySupport.cs" />
|
|
|
|
|
|
<Compile Include="SCSI\Types.cs" />
|
|
|
|
|
|
<Compile Include="LisaTag.cs" />
|
|
|
|
|
|
<Compile Include="CD\Sector.cs" />
|
|
|
|
|
|
<Compile Include="PCMCIA\Enums.cs" />
|
|
|
|
|
|
<Compile Include="PCMCIA\Types.cs" />
|
|
|
|
|
|
<Compile Include="PCMCIA\CIS.cs" />
|
|
|
|
|
|
<Compile Include="PCMCIA\VendorCode.cs" />
|
|
|
|
|
|
<Compile Include="MMC\CSD.cs" />
|
|
|
|
|
|
<Compile Include="MMC\CID.cs" />
|
|
|
|
|
|
<Compile Include="MMC\ExtendedCSD.cs" />
|
|
|
|
|
|
<Compile Include="MMC\OCR.cs" />
|
|
|
|
|
|
<Compile Include="MMC\VendorString.cs" />
|
|
|
|
|
|
<Compile Include="SecureDigital\CID.cs" />
|
|
|
|
|
|
<Compile Include="SecureDigital\CSD.cs" />
|
|
|
|
|
|
<Compile Include="SecureDigital\SCR.cs" />
|
|
|
|
|
|
<Compile Include="SecureDigital\OCR.cs" />
|
|
|
|
|
|
<Compile Include="SecureDigital\VendorString.cs" />
|
|
|
|
|
|
<Compile Include="Xbox\SS.cs" />
|
|
|
|
|
|
<Compile Include="Sega\CD.cs" />
|
|
|
|
|
|
<Compile Include="Sega\Saturn.cs" />
|
|
|
|
|
|
<Compile Include="Sega\Dreamcast.cs" />
|
2022-03-07 07:36:42 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:50:26 +00:00
|
|
|
|
<ProjectReference Include="..\Aaru.Checksums\Aaru.Checksums.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Aaru.Helpers\Aaru.Helpers.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Aaru.Console\Aaru.Console.csproj" />
|
2022-03-07 07:36:42 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:50:26 +00:00
|
|
|
|
<Folder Include="Bluray" />
|
|
|
|
|
|
<Folder Include="SCSI\" />
|
|
|
|
|
|
<Folder Include="ATA\" />
|
|
|
|
|
|
<Folder Include="DVD\" />
|
|
|
|
|
|
<Folder Include="SCSI\MMC\" />
|
|
|
|
|
|
<Folder Include="CD\" />
|
|
|
|
|
|
<Folder Include="Floppy\" />
|
|
|
|
|
|
<Folder Include="Xbox\" />
|
|
|
|
|
|
<Folder Include="SCSI\SSC\" />
|
|
|
|
|
|
<Folder Include="PCMCIA\" />
|
|
|
|
|
|
<Folder Include="MMC\" />
|
|
|
|
|
|
<Folder Include="SecureDigital\" />
|
|
|
|
|
|
<Folder Include="Sega\" />
|
2022-03-07 07:36:42 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Include="..\LICENSE.LGPL">
|
|
|
|
|
|
<Link>LICENSE.LGPL</Link>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:50:26 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
|
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="6.0.0-preview.4.21253.7" />
|
|
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all" />
|
2022-03-07 07:36:42 +00:00
|
|
|
|
</ItemGroup>
|
2015-10-05 20:27:44 +01:00
|
|
|
|
</Project>
|