2017-12-28 04:57:26 +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:32 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
|
<ProjectGuid>{F2B84194-26EB-4227-B1C5-6602517E85AE}</ProjectGuid>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<RootNamespace>Aaru.CommonTypes</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Aaru.CommonTypes</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.CommonTypes</Title>
|
|
|
|
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
2022-11-13 12:46:16 +00:00
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-11-13 12:48:40 +00:00
|
|
|
|
<LangVersion>11</LangVersion>
|
2022-03-07 07:36:32 +00:00
|
|
|
|
<Description>Contains common types defined by the Aaru Data Preservation Suite.</Description>
|
|
|
|
|
|
<PackageProjectUrl>https://github.com/aaru-dps/</PackageProjectUrl>
|
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
|
<RepositoryUrl>https://github.com/aaru-dps/Aaru.CommonTypes</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:08 +00:00
|
|
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
2022-03-07 07:36:32 +00:00
|
|
|
|
</PropertyGroup>
|
2022-11-13 13:19:55 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
|
<NoWarn>CS1591;CS1574</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
2022-11-13 16:38:16 +00:00
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests"/>
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests.Devices"/>
|
|
|
|
|
|
</ItemGroup>
|
2022-03-07 07:36:32 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\CICMMetadata\dotnet\cicm.cs">
|
|
|
|
|
|
<Link>Metadata/cicm.cs</Link>
|
|
|
|
|
|
</Compile>
|
2022-11-13 14:50:25 +00:00
|
|
|
|
<Compile Include="Delegates.cs" />
|
|
|
|
|
|
<Compile Include="Enums\DeviceType.cs" />
|
|
|
|
|
|
<Compile Include="Enums\ErrorNumber.cs" />
|
|
|
|
|
|
<Compile Include="Enums\Images.cs" />
|
|
|
|
|
|
<Compile Include="Enums\Nes.cs" />
|
|
|
|
|
|
<Compile Include="Extents\ExtentsByte.cs" />
|
|
|
|
|
|
<Compile Include="Extents\ExtentsConverter.cs" />
|
|
|
|
|
|
<Compile Include="Extents\ExtentsInt.cs" />
|
|
|
|
|
|
<Compile Include="Extents\ExtentsLong.cs" />
|
|
|
|
|
|
<Compile Include="Extents\ExtentsSByte.cs" />
|
|
|
|
|
|
<Compile Include="Extents\ExtentsShort.cs" />
|
|
|
|
|
|
<Compile Include="Extents\ExtentsUInt.cs" />
|
|
|
|
|
|
<Compile Include="Extents\ExtentsULong.cs" />
|
|
|
|
|
|
<Compile Include="Extents\ExtentsUShort.cs" />
|
|
|
|
|
|
<Compile Include="Filters.cs" />
|
|
|
|
|
|
<Compile Include="Geometry.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IBaseImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IBaseWritableImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IByteAddressableImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IChecksum.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IFilesystem.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IArchive.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IFilter.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IFloppyImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IMediaImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IOpticalMediaImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IPartition.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IPartitionableMediaImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IPluginRegister.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IReadOnlyFilesystem.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\ITapeImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IVerifiableImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IVerifiableSectorsImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IWritableFloppyImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IWritableImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IWritableOpticalImage.cs" />
|
|
|
|
|
|
<Compile Include="Interfaces\IWritableTapeImage.cs" />
|
|
|
|
|
|
<Compile Include="Interop\DetectOS.cs" />
|
|
|
|
|
|
<Compile Include="Interop\PlatformID.cs" />
|
|
|
|
|
|
<Compile Include="Interop\Version.cs" />
|
|
|
|
|
|
<Compile Include="MediaTypeFromDevice\FromAta.cs" />
|
|
|
|
|
|
<Compile Include="MediaTypeFromDevice\FromMmc.cs" />
|
|
|
|
|
|
<Compile Include="MediaTypeFromDevice\FromOdc.cs" />
|
|
|
|
|
|
<Compile Include="MediaTypeFromDevice\FromScsi.cs" />
|
|
|
|
|
|
<Compile Include="MediaTypeFromDevice\FromSbc.cs" />
|
|
|
|
|
|
<Compile Include="MediaTypeFromDevice\FromSsc.cs" />
|
|
|
|
|
|
<Compile Include="Metadata\CdOffset.cs" />
|
|
|
|
|
|
<Compile Include="Metadata\DeviceReport.cs" />
|
|
|
|
|
|
<Compile Include="Metadata\DeviceReportV2.cs" />
|
|
|
|
|
|
<Compile Include="Metadata\Dimensions.cs" />
|
|
|
|
|
|
<Compile Include="Metadata\MediaType.cs" />
|
|
|
|
|
|
<Compile Include="Metadata\Resume.cs" />
|
|
|
|
|
|
<Compile Include="Metadata\Statistics.cs" />
|
|
|
|
|
|
<Compile Include="Metadata\Version.cs" />
|
|
|
|
|
|
<Compile Include="Partition.cs" />
|
|
|
|
|
|
<Compile Include="MediaType.cs" />
|
|
|
|
|
|
<Compile Include="PluginBase.cs" />
|
|
|
|
|
|
<Compile Include="Structs\Devices\ATA\Identify.cs" />
|
|
|
|
|
|
<Compile Include="Structs\Devices\SCSI\Enums.cs" />
|
|
|
|
|
|
<Compile Include="Structs\Devices\SCSI\Inquiry.cs" />
|
|
|
|
|
|
<Compile Include="Structs\Devices\SCSI\Modes\2A.cs" />
|
|
|
|
|
|
<Compile Include="Structs\Filesystems.cs" />
|
|
|
|
|
|
<Compile Include="Structs\Images.cs" />
|
|
|
|
|
|
<Compile Include="Structs\TapeFile.cs" />
|
|
|
|
|
|
<Compile Include="Structs\TapePartition.cs" />
|
2022-03-07 07:36:32 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:50:25 +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="System.Security.Principal.Windows" Version="6.0.0-preview.5.21301.5" />
|
|
|
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
|
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all" />
|
2022-03-07 07:36:32 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="..\LICENSE.MIT">
|
|
|
|
|
|
<Link>LICENSE.MIT</Link>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:50:25 +00:00
|
|
|
|
<ProjectReference Include="..\Aaru.Console\Aaru.Console.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Aaru.Helpers\Aaru.Helpers.csproj" />
|
2022-03-07 07:36:32 +00:00
|
|
|
|
</ItemGroup>
|
2019-08-15 22:35:57 +02:00
|
|
|
|
</Project>
|